AppEngine批量加载器和自动创建的属性值
在我的模型中,我有一个属性:
created = db.DateTimeProperty(required=True, auto_now_add=True)
当在数据存储中创建这种类型的对象时,created 属性会自动填充。
当我使用批量加载器工具处理没有此字段的表时,当我上传到 AppEngine 时,不会自动填充该字段,此时会创建新对象。
如何让它设置从批量加载器上传的新对象的创建时间?
In my model I have a property:
created = db.DateTimeProperty(required=True, auto_now_add=True)
When an object of this type is created in the datastore, the created property is automatically populated.
When I use the bulk loader tool with a table which does not have this field, the field is not automatically populated when I upload to AppEngine, at which time new objects are created.
How can I make it set the created time on new objects uploaded from the bulk loader?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将如下内容添加到bulkloader.yaml中:
Add something like the following to bulkloader.yaml: