class User(db.Model):
username = db.StringProperty(required=True)
password = db.StringProperty(required=True)
email_address = db.StringProperty()
class TaskPost(db.Model):
user = db.ReferenceProperty(User, collection_name='taskposts')
category = db.StringProperty()
title = db.StringProperty(required=True)
Trying to use one-to-many relationship with the entities. If you add a post, it will associate to a user.
user = User(username=self.request.cookies.get("username"))
TaskPost(user=user,others=others).put()
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/db/__init__.py", line 641, in validate
raise BadValueError('Property %s is required' % self.name)
BadValueError: Property password is required
So it seems it is not the best way to associate a user table with a post because user shouldn't input password when posting. Anyone has a better way to do that? Thanks in advance.