Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaScript でフォームの値を取得し、それを を使用して JSON オブジェクトに変換していますJSON.stringify()。
JSON.stringify()
これを CouchDB に保存します。誰でもその方法を教えてもらえますか?
私はそれがそうだったと思う:
var json = {_id:1 friends:["friend1","friend2"]} couchdb.save(json); var friends = couchdb.open(1).friends;
それがあなたを助けることを願っています。