以不同格式获取实体的属性值(GAE-Python)

发布于 2024-11-19 03:34:07 字数 361 浏览 2 评论 0 原文

在 Google 应用引擎中
当我尝试通过 ReferenceProperty 元素获取属性值时
它以不同的格式返回引用的实体值,例如:
真实存储值“Name”:“demoname”
当我得到并打印/写入:u'demoname

有没有任何函数或方法可以以正确的字符串格式获取值。

代码:
人物模型具有名称属性:
o_model = model()
o_model.ref = person模型参考 #db.ReferenceProperty(person)

现在我得到模型实体对象:
sro.write(modelobject.ref.name)
输出:u'名称值
想要:名称值

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微凉 2024-11-26 03:34:07

如果 modelobject.ref.name StringProperty,则为“由数据存储区作为 unicode 值返回。"

u' 看起来像 repr() unicode 对象:

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

也许 sro.write() 调用 repr() 或者您正在存储 repr() > 数据存储中的 Unicode 字符串?

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文