2

我在 JavaScript 中检索表单值并使用JSON.stringify().

现在我想将它保存在 CouchDB 中。谁能告诉我该怎么做?

4

1 回答 1

2

我认为是:

var json = {_id:1 friends:["friend1","friend2"]}
couchdb.save(json);
var friends = couchdb.open(1).friends;

希望对您有所帮助。

于 2012-05-13T07:49:42.013 回答