Pouchdb 简明教程

PouchDB - Create Database

你可以使用 PouchDB 构造函数在 PouchDB 中创建一个数据库。

You can create a database in PouchDB using the PouchDB constructor.

Syntax

以下是使用 PouchDB 构造函数的语法。你需要将数据库名称作为参数传递给它。

Following is the syntax of using the PouchDB constructor. To this, you need to pass the name of the database as a parameter.

new PouchDB(Database_name)

Example

要使用 node 在 PouchDB 中创建一个数据库,首先,你需要使用 require() 方法引用 PouchDB 包,然后你可以像以下示例中所示那样创建一个数据库。

To create a database in PouchDB using node, first of all, you need to require the PouchDB package using the require() method and then you can create a database as shown in the following example.

//Requiring the package
var PouchDB = require('PouchDB');

//Creating the database object
var db = new PouchDB('my_database');
console.log ("Database created Successfully.");

将以上代码保存到名为 Create_Database.js 的文件中。打开命令提示符并使用 node 执行 JavaScript 文件,如下所示。

Save the above code in a file with the name Create_Database.js. Open the command prompt and execute the JavaScript file using node as shown below.

C:\PouchDB_Examples>node Create_Database.js

这将在本地创建一个数据库(你可以在当前目录中看到文件夹),显示以下消息。

This will create a database locally (you can see the folder in the current directory) displaying the following message.

Database created Successfully.