Python Couch Db中的JSON结构

时间:2017-06-06 08:39:36

标签: python couchdb

Hai们我想使用API​​将数据发布到我的CouchDB。

这是我发布的

创建的文档
{
   "_id": "file1_benchmark",
   "_rev": "1-8efcf01444c3e47532445f81bdbe02b5",
   "id_stn": "104",
   "no_stn": "S 0221",

}

这是我在模型中的结构。

class Data(Document):
    _id = TextField(),
    id_stn = DictField(),
    no_stn = DictField()

     ))

但我想要的文件结果是这样的:

{
       "_id": "file1_benchmark",
       "_rev": "1-8efcf01444c3e47532445f81bdbe02b5",
       {
       "id_stn": "104",
       "no_stn": "S 0221",
       },
       {
       "id_stn": "105",
       "no_stn": "S 0222",
       }

    }

更改模型的正确方法是什么?

0 个答案:

没有答案