AppEngine Bulkloader 在导入期间生成数据

发布于 2024-10-16 02:33:17 字数 280 浏览 2 评论 0原文

我将 CSV 导入到数据存储中,并希望在导入期间使用自定义操作生成一个 StringListProperty 字段(例如生成索引、进行一些计算)。我尝试重写模型的 put() 方法,就像问题 覆盖 Google App Engine 中的 save、put、get 等方法,但在批量加载器导入期间这没有任何效果。

I imported a CSV into the datastore and want to generate a field StringListProperty with a custom action during import (e.g. index generation, doing some calculations). I tried to override the put() method of my model like it is described in question Override save, put, get, etc... methods in Google App Engine, but during bulkloader import this has no effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青衫负雪 2024-10-23 02:33:17

查看 google.appengine.ext.bulkload.bulkloader_wizard,发现 str/unicode 列表没有默认转换器。你必须自己做。

look into google.appengine.ext.bulkload.bulkloader_wizard, there isn't a default transformer for list of str/unicode. You have to make your own.

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