In google app engine
When i try to get propery value by ReferenceProperty element
It return referenced entity value in different format Like:
real stored value "Name" : "demoname"
when i get and print/write: u'demoname

is there any function or way to get value in proper string format.

code:
person model has name property:
o_model = model()
o_model.ref = personmodel reference #db.ReferenceProperty(person)

now i get model entity object:
sro.write(modelobject.ref.name)
output:u'namevalue
wanted:namevalue

link|improve this question

56% accept rate
feedback

1 Answer

If modelobject.ref.name is a StringProperty, then it is "returned by the datastore as a unicode value."

The u' looks like the repr() of a unicode object:

>>> s = u"Unicode String."
>>> print s
Unicode String.
>>> print repr(s)
u'Unicode String.'

Perhaps sro.write() calls repr() or you're storing the repr() of a Unicode string in the datastore?

link|improve this answer
same thing try with entity object i got perfect result. but when try with referenceProperty it return in this unicode format. – Ashvin Jul 10 '11 at 5:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.