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",
}
}
更改模型的正确方法是什么?