标签: couchdb
我正在JavaScript中检索表单值并使用JSON.stringify()将其转换为JSON对象。
JSON.stringify()
现在我想将它保存在CouchDB中。谁能说出怎么做呢?
答案 0 :(得分:2)
我认为是:
var json = {_id:1 friends:["friend1","friend2"]} couchdb.save(json); var friends = couchdb.open(1).friends;
希望能帮助你。