服务器已经启动并运行,我可以发出 get 请求和一些查询,但我不知道如何将 bson 文件传递给 curl 以发出 post 请求:
我试过的是:
curl -i -X POST -H 'Content-Type: application/bson' -d file.bson http://localhost:3000/dir
curl -i -X POST -H 'Content-Type: application/json' -d file.json http://localhost:3000/dir
file.bson 看起来像这样:
{
"_id" : 3,
"User_id" : "Peter",
"path_video" : "/mnt/1.mp4",
"var1" : 230,
"date" : new Date(2013,8,24,19,15),
"h": 2000,
"loc": [19.4154248, -99.1661615],
...
}
我正在尝试构建的 API 如下所示:
exports.addEnc = function(req, res) {
var value = req.body;
db.collection('IZP', function(err, collection) {
collection.insert(value, {safe:true}, function(err, result) {
if (!err){
console.log('Added:');
res.send(result[0]);
}
});
});
};
但它是一个长文件,我也试过,把 bson 像 :'{...}' 但不起作用,有什么想法吗?