从表中查询文档
r.connect({host: 'localhost', port: 28015})
.then((conn) => {
// Can also use .get({id: 1})
return r.db("stackoverflow").table("examples").get(1).run(conn)
}).then((result) => {
console.log(result);
})
r.connect({host: 'localhost', port: 28015})
.then((conn) => {
// Can also use .get({id: 1})
return r.db("stackoverflow").table("examples").get(1).run(conn)
}).then((result) => {
console.log(result);
})