StackOverflow 文档 rethinkdb 教程 开始使用 Node 在数据库上创建一个新表 在数据库上创建一个新表 Created: November-22, 2018 r.connect({host: 'localhost', port: 28015}) .then((conn) => { return r.db("stackoverflow").tableCreate("examples").run(conn); }).then((result) => { console.log(result); }); 将文档插入表中创建一个新数据库