我遇到一个问题,当用户发送图像数据时,它在服务器上保存已损坏。
所以,我基本上有这个设置:
- api
. index.js
- methods
. users.js
(我删除了与问题无关的文件)
在API文件之外,只要有server.js
,就会在访问api.example.com时启动它。 (基本上像VirtualHost)
话虽如此。这是问题所在:
./api/index.js
(问题点)
// All this essentiall does is get the get the whole payload as a buffer.
req.on("data", function(chunk){
// Potential problem area.
req.api.payload = ((req.api.payload) ? (Buffer.concat([req.api.payload, chunk])) : (chunk));
});
req.on("end", function(){
// Check if we're on api.example.com/users/
if (path[0].match(/^users$/i)) {
methods.users(req, res);
}
});
我认为问题出在有效载荷的某个地方。
但是......只是,我会包含./api/methods/users.js
...(仅包括可能出现问题的部分,因为它是一个大文件)
./api/methods/users.js
else if (req.method.match(/^POST$/i)) {
if (!path[2] || path[2].match(/^(?:info|data)$/i)) {
// ... (Everything that was here didn't apply to the image upload)
} else if (path[2].match(/^(?:pic|picture|avatar)$/i)) {
// Url matches api.example.com/users/<user_id>/pic
var __base = "/home/user/web/hosts/resources/static/images/api/users/"; // Upload path
// Another potential spot where the problem could be.
fs.writeFile(__base + path[1] + ".png", req.api.payload, "binary", function(err){
if (err) res.api.end(err);
res.api.end(req.api.payload.slice(0, 40)); // Testing
});
}
}
请注意,这仅用于测试上传,我发现有人可以上传其他数据,但这是本地的。它目前只是用于测试上传的数据。
另一个注意事项,您没有看到明确定义的任何变量与问题无关,只是没有:
path
:Url作为数组,例如"/user/xero/info"
- &gt; ["user", "xero", "info"]
req.api
:事先创建的对象(在主server.js
文件中)。还有一点需要注意,我是通过cURL命令上传文件的:
curl -X POST -d @random.png http://api.poweredrails.org/users/test4/pic
答案 0 :(得分:2)
问题在于curl
用法,您需要指定--data-binary
而不是-d
。您还应该设置一个Content-Type
标题,以便curl做正确的事情:
curl -X POST -H "Content-Type: image/png" --data-binary @random.png http://api.poweredrails.org/users/test4/pic
另一种选择是支持在后端应用中使用multipart / form-data,特别是如果想要在图像中提交其他信息。然后你的curl用法看起来像:
curl -X POST --form "mypicture=@random.png" --form "foo=bar" http://api.poweredrails.org/users/test4/pic