Google App Engine - 将密钥存储到ndb KeyProperty中

时间:2016-10-05 02:03:54

标签: python google-app-engine google-cloud-datastore webapp2 google-app-engine-python

我正在使用带有webapp2的Google App Engine使用ndb数据存储区创建评论系统。我创建了一个属性KeyProperty,因此我可以使用相同的密钥获取与帖子相关的注释。

但是,每当我尝试将帖子的密钥存储到ndb.KeyProperty中时,我都会收到错误消息。我尝试将KeyProperty更改为

p_key= ndb.KeyProperty(Post), 
p_key= ndb.KeyProperty(kind="Post"), 
p_key= ndb.KeyProperty(kind=Post, repeated=True) but none of these worked.

当我使用带有ReferenceProperty的db模型时,应用程序的行为方式与我想要的一样。

这是守则。

def question_key(name = 'default'):
    return ndb.Key('questions', name)

class Post(ndb.Model):
    question = ndb.StringProperty(required = True)
    created = ndb.DateTimeProperty(auto_now_add = True)
    last_modified = ndb.DateTimeProperty(auto_now = True)
    user = ndb.StringProperty()

    def render(self):
        self._render_text = self.question.replace('\n', '<br>')
        return render_str("post.html", p = self)

class Reply(ndb.Model):
    content = ndb.TextProperty(required = True)
    p_key= ndb.KeyProperty(kind=Post)
    user = ndb.StringProperty()
    created = ndb.DateTimeProperty(auto_now_add = True)
    last_modified = ndb.DateTimeProperty(auto_now = True)

    def render(self):
        self._render_text = self.content.replace('\n', '<br>')
        return self._render_text

class PostPage(Handler):
    def get(self, post_id):
        key = ndb.Key('Post', int(post_id), parent=question_key())
        post = key.get()

        params = dict(post=post)
        #retrieve all the comments and then filter it by key
        if Reply.query():
            reply = Reply.query(Reply.p_key == key)
            params['reply'] = reply

        if self.user:
            params['current_user'] = self.user.name

        if not post:
            self.error(404)
            return

        self.render("permalink.html", **params)

    def post(self, post_id):
        reply_content = self.request.get('reply')
        p_key = self.request.get('p_key') #get post key from template
        user = self.user

        if reply_content:
            r = Reply(content=reply_content, p_key=p_key, user=user)
            r.put()

            self.redirect('/stories/%s' % str(post_id))

        else:
            error = "error"
            self.redirect('/stories/%s' % str(post_id))

class NewPost(Handler):
    def get(self):
        if self.user:
            self.render("newpost.html")
        else:
            self.redirect("/login")

    def post(self):
        if not self.user:
            self.redirect('/')

        question = self.request.get('question')
        user=self.user.name

        if question:
            p = Post(parent = question_key(), question = question, user=user)
            p.put()
            self.redirect('/stories/%s' % str(p.key.id()))
        else:
            error = "error"
            self.render("newpost.html", error=error)

app = webapp2.WSGIApplication([('/', MainPage),
                           ('/stories/([0-9]+)', PostPage),
                           ('/stories/newpost', NewPost),
                           ], 
                            debug=True)

以下是错误消息。

Traceback (most recent call last):
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1535, in __call__
    rv = self.handle_exception(request, response, e)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1529, in __call__
    rv = self.router.dispatch(request, response)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1278, in default_dispatcher
    return route.handler_adapter(request, response)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1102, in __call__
    return handler.dispatch()
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 572, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 570, in dispatch
    return method(*args, **kwargs)
  File "/Users/young-junpark/kloupod-143223/main.py", line 240, in post
    r = Reply(content=reply_content, p_key=p_key, user=user)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 2947, in __init__
    self._set_attributes(kwds)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 2993, in _set_attributes
    prop._set_value(self, value)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 1145, in _set_value
    value = self._do_validate(value)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 1092, in _do_validate
    value = self._call_shallow_validation(value)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 1284, in _call_shallow_validation
    return call(value)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 1331, in call
    newvalue = method(self, value)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 1781, in _validate
    (value,))
BadValueError: Expected string, got User(key=Key('users', 'default', 'User', 5629499534213120), created=datetime.datetime(2016, 10, 4, 23, 12, 27, 1990), email=u'youngtheabsolute@gmail.com', name=u'\ubc15\uc6a9\uc900', pw_hash=u'JsIho,9c9f5b4b3a19213e8a84318db6d2e94179678d2d7f22cce6af9b30a558423b28', verification_code=u'12345', verified=False)

非常感谢你的帮助!

1 个答案:

答案 0 :(得分:1)

错误告诉您发生了什么:

BadValueError: Expected string, got User

如果你在追溯中再看一点,你会看到:

post r = Reply(content=reply_content, p_key=p_key, user=user) 

Reply课程中,您将user设置为ndb.StringProperty,但在该行代码中,您似乎正在传递完整的User对象,不只是一个字符串。

如果您将user的{​​{1}}属性更改为Reply类型而不是User,那么看起来一切都应该正常工作。

您可以使用structured properties完成此操作:

StringProperty

更新: 在完成您的评论后,您似乎还有其他问题。

您创建user = ndb.StructuredProperty(User) ,然后将其发送到ndb.Key("Post", post_id, parent=question_key())中的模板。此键在模板中编码为字符串,类似于:

PostPage.get()

我假设您将该密钥发回u"Key('question', 'default', 'Post', 123123213123) 。因此,当您尝试使用该键创建PostPage.post()时:

Reply

它没有说它期望r = Reply(content=reply_content, p_key=p_key, user=user) ,而是收到一个看起来像钥匙的字符串。您应该考虑使用ndb.Key密钥。 Google上的This page可以很好地解释如何使用urlsafe