我将这段代码插入CouchDB:
var nano = require('nano')('http://localhost:5984');
var users = nano.db.use('users') ;
var request = require('request');
users.insert({husband:husbandname, wife:wifename, title: wedtitle, date: weddate ,content:wedcontent,Facebook:FBInvites,UserPhotos:imgUploads},sitename, function(err, body , header) {
if (!err)
{
console.log(body);
}
else{
console.log(err);
}
});
res.send('Process Ended Okay');
});
我将当前值输入:http://localhost:5984/_utils/database.html?users
到目前为止一切都很好,事情就是现在。
我试图制作" sitename"一个将直接发送到http://localhost:3000/sitename/
的文件夹
并将拥有我在该网站名称中的数据,以及模板上的值。
index.html或玉或类似的东西。
我已经阅读了网上的所有文件,不能真正想出来,会很乐意提供一些帮助。
提前谢谢,任何建议都会被批评!