发送Js POST请求

Sails Js POST request

本文关键字:请求 POST Js 发送      更新时间:2023-09-26

我有一个html表单,在我的帆应用程序中向/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
                            }
                    );
            });
    }

我发现问题出在我的表单结构上。由于Sails使用Skipper处理multipart/form-data的方式,我不得不将文件输入移动到隐藏文本字段之后。