Hi,
I am new to couchDB, just started to read tutorials about it, I found this one :
http://blog.edparcell.com/using-jquery-and-couchdb-to-build-a-simple-we
In the first page it says :
The initial version of our webapp will let us store a mobile number for each
person, so add the following 2 documents:
view plaincopy to clipboardprint?
1. {"type": "address", "name": "Fred", "mobile": "555-0001"}
2. {"type": "address", "name": "Barney", "mobile": "555-0002"}
Is there any way to add ducument as the above jsons, or just add one by one
from :
http://127.0.0.1:5984/_utils/database.html?addressbook
by clicking New Document. ?
thanks