通过Google App Engine上传批量上传列表

时间:2010-09-19 23:32:48

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

在我的数据模型中,我的一个属性是一个列表。如何告诉批量加载器将字符串转换为由''(空格)分隔的列表?

1 个答案:

答案 0 :(得分:1)

- property: districts
  external_name: DISTRICTS
  # Type: String Stats: 6000 properties of this type in this kind.
  import_transform: "lambda x: x.split(' ')"
  export_transform: "' '.join"