本文概述
db.put()方法用于在PouchDB数据库中创建文档。在PouchDB数据库中创建的文档存储在变量中, 并作为参数传递给此方法。此方法还可以接受回调(可选)函数作为参数。
句法:
db.put(document, callback)
创建文档示例
首先, 我们在PouchDB中创建一个名为” Second_Database”的数据库, 因为我们已经删除了前一个数据库。
访问:如何在PouchDB中创建数据库
使用put()方法创建一个文档。创建的文档应为JSON格式, 即一组用逗号(, )分隔并括在花括号({})中的键/值对。
//Requiring the package
var PouchDB = require('PouchDB');
//Creating the database object
var db = new PouchDB('Second_Database');
//Preparing the document
doc = {
_id : '001', name: 'Ajeet', age : 28, designation : 'Developer'
}
//Inserting Document
db.put(doc, function(err, response) {
if (err) {
return console.log(err);
} else {
console.log("Document created Successfully");
}
});
将以上代码保存在名为” PouchDB_Examples”的文件夹中的名为” Create_Document.js”的文件中。打开命令提示符, 并使用node执行JavaScript文件:
node Create_Document.js
在远程数据库中插入文档
你还可以将文档插入远程存储的数据库(CouchDB)中。你只需传递要在CouchDB中创建文档的数据库路径, 而不是数据库名称。
在远程数据库示例中插入文档
我们在CouchDB上有一个名为”员工”的数据库。如下图所示, 该数据库中没有文档:
让我们看看如何在保存在CouchDB服务器上的名为” employees”的数据库中插入文档。
//Requiring the package
var PouchDB = require('PouchDB');
//Creating the database object
var db = new PouchDB('http://localhost:5984/employees');
//Preparing the document
doc = {
_id : '001', name: 'Ajeet', age : 28, designation : 'Developer'
}
//Inserting Document
db.put(doc, function(err, response) {
if (err) {
return console.log(err);
} else {
console.log("Document created Successfully");
}
});
将以上代码保存在名为” PouchDB_Examples”的文件夹中的名为” Create_Remote_Document.js”的文件中。打开命令提示符, 并使用node执行JavaScript文件:
node Create_Remote_Document.js
验证
你可以通过访问CouchDB服务器上的”员工”数据库来验证文档是否已创建。
评论前必须登录!
注册