Commit 17015e67 authored by Tristan Cavelier's avatar Tristan Cavelier

Add allDocs examples to README.md

parent 3dc144e9
...@@ -105,6 +105,8 @@ my_jio_instance.close(); // close this instance ...@@ -105,6 +105,8 @@ my_jio_instance.close(); // close this instance
Examples: Examples:
``` ```
var jio = jIO.newJio({"type":"local","username":"myname","applicationname":"myappname"}); var jio = jIO.newJio({"type":"local","username":"myname","applicationname":"myappname"});
// jio.get (docid, options, callback)
jio.get ('myfile',{max_retry:3},function (err,val) { jio.get ('myfile',{max_retry:3},function (err,val) {
if (err) { if (err) {
console.error (err); console.error (err);
...@@ -112,11 +114,22 @@ jio.get ('myfile',{max_retry:3},function (err,val) { ...@@ -112,11 +114,22 @@ jio.get ('myfile',{max_retry:3},function (err,val) {
console.log (val.content); console.log (val.content);
} }
}); });
// jio.put (doc, success, error)
jio.put ({_id:'myotherfile',content:'and his content'},function (val) { jio.put ({_id:'myotherfile',content:'and his content'},function (val) {
console.log ('success'); console.log ('success');
},function (err) { },function (err) {
console.error (err); console.error (err);
}); });
// jio.allDocs (options, success, error)
jio.allDocs ({metadata_only:false},function (val) {
var i;
for (i=0; i < val.total_rows; i++) {
console.log ('Filename: ' + val.rows[i].id);
console.log ('Content: ' + val.rows[i].value.content);
}
}, function (err) {});
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment