我的任务是修改旧版应用,以便用户可以批量上传工资核算。目前,他们必须填写表格并按项目输入数据,在每个表格之后点击提交。我让他们能够一次上传包含大量调整的CSV文件。
在服务器上,他们将物品逐个插入沙发,如下所示:
function wsapiPOST(req, res, next) {
var path = req.path.substr(6)
, url = couchPath + path + requestUtil.buildQueryString(req);
request.post({
url: url,
headers: { 'content-type': 'application/json' },
body: JSON.stringify(req.body)
},function (err, resp, body) {
if (err) {
if (resp) {
res.writeHead(resp.statusCode);
res.end(body);
} else { // This would happen if the request timed out
res.writeHead(408);
res.end('timeout');
}
}
}).pipe(res);
}
沙发网址是动态构建的。
req.body
包含单个项目的属性。
我刚接触沙发,但我不确定如何在一次操作中发送多个文件以便插入。我可以将request.post
调用放入循环中,但我认为这不会非常高效。
我只需要指向正确的方向,通过其REST API批量插入沙发。谢谢!