0

我使用谷歌数据存储和 jinja2 开始。我能够添加和检索字符串值,但是当我将电子邮件属性用作:email=db.Email 并使用 .email 检索它时,我会从数据存储中获取类“google.appengine.api.datastore_types.Email”。我如何获得电子邮件的价值?

4

1 回答 1

0

使用 .email 对我有用。

蟒蛇代码

import webapp2
from google.appengine.ext import db

class Greeting(db.Model):
    author = db.StringProperty()
    email = db.EmailProperty()

class MainPage(webapp2.RequestHandler):
  def get(self):
    en = Greeting(author='hellooo', email=db.Email("a@a.com"))
    en.put()

app = webapp2.WSGIApplication([('/', MainPage)],
                              debug=True)

并获得这样的价值

dev~devchat> x = Greeting.get_by_id(2)
dev~devchat> x.author
u'hellooo'
dev~devchat> x.email
u'a@a.com'
dev~devchat> x.email.ToXml()
u'<gd:email address="a@a.com" />'
于 2013-03-30T20:27:39.697 回答