AppEngine批量加载器和自动创建的属性值

发布于 2024-10-13 13:44:19 字数 273 浏览 3 评论 0原文

在我的模型中,我有一个属性:

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 技术交流群。

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

发布评论

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

评论(1

你爱我像她 2024-10-20 13:44:19

将如下内容添加到bulkloader.yaml中:

- property: created
  external_name: created
  import_transform: "lambda x: datetime.datetime.utcnow()"

Add something like the following to bulkloader.yaml:

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