我有一个html表单,在我的sails应用程序中向/upload/upld
发出POST请求。我的目标是有两个参数:要上传的照片和拍摄照片的位置。我的上传控制器应该将文件上传到具有location参数值的目录。
<form method="post" action="/upload/upld" enctype="multipart/form-data">
<span class="btn btn-default btn-file wow bounceIn top-buffer">
Browse <input type="file" name="photo">
<input type="hidden" name="location" value="istana" />
</span>
<input type="submit" class="btn btn-primary wow bounceIn top-buffer">
</form>
不幸的是,这段代码似乎没有用。每当我上传一个文件时,控制台上的输出显示以下内容。我不确定为什么upld方法似乎在单个上传中运行两次。
{ location: 'istana', id: undefined }
istana
{ id: undefined }
undefined
我的上传控制器如下所示:
upld: function (req, res) {
var params = req.params.all();
console.log(params);
var this_location = params.location;
console.log(this_location);
req.file('photo').upload({ dirname:require('path').join('./',this_location)},function (err, files) {
if (err){
return res.serverError(err);
}
return res.view('homepage',{
message: files.length + ' file(s) uploaded successfully!',
files: files
}
);
});
}