我是cloudant-couchdb
第一次使用,我只是遇到了这个问题。我正在尝试通过我的 node.js 服务器将视图动态插入到我的数据库中。
这是我的代码。
app.post("/listSections", function(req, res) {
var moduleID = req.body.name;
console.log(moduleID);
db.insert(
{ "views":
{ moduleID: //create view with name = moduleID
{
"map": function (doc) {
//some function
}
}
},
'_design/section', function (error, response) {
console.log("Success!");
});
});
我想动态创建一个视图,视图名称是变量 moduleID 的值。如何在插入函数中传递该变量?