我正在尝试使用带有 NodeJs 的摇篮将数据点保存在 Couchbase 中。签出此代码:
var cradle = require('cradle'),db;
var connection = new(cradle.Connection)('localhost', 8091, {
auth: { username: 'Admin', password: 'Admin' }
});
var db = connection.database('data');
db.save('exercise', {
name: 'satyam',
age: '24'
}, function (err, res) {
if (err) {
// Handle error
console.log("SAVE ERROR: Could not save record!!");
} else {
// Handle success
console.log("SUCESSFUL SAVE: The record was saved in CouchDB!");
}
console.log(res, new Date());
});
执行此代码时,我收到消息:成功保存:记录已保存在 CouchDB 中!{} 2014 年 3 月 10 日星期一 17:57:09 GMT+0530 (IST)
看起来 res 没有数据。谁能帮我解决这个问题。