blueimp jQuery-File-Upload无法找到上传的文件

时间:2017-12-04 22:14:35

标签: jquery file-upload upload jquery-file-upload blueimp

在centos上安装blueimp jQuery-File-Upload后上传似乎正常工作,因为我可以在机器界面上看到上传流量,问题是我无法在/ php / files中找到上传的文件目录

github上的

链接:https://github.com/blueimp/jQuery-File-Upload

  1. 上传文件的正确目录是什么?
  2. 如果是/ php / files,为什么我看不到这个目录中的任何文件?
  3. 如何更改默认上传目录?
  4. [root @ localhost /] #cd / var / www / html / upload / server / php / files /

    [root @ localhost files] #ls

    [root @ localhost files]#

    enter image description here

    upload progress

1 个答案:

答案 0 :(得分:0)

在fileupload选项中有一个url标记,您可以使用它来发布到您的服务器方法。 (这是一个.net示例)

    $('#fileupload').fileupload({
        url: '@(Url.Content("~/"))controller_name/your_method_name'
    });

在您的方法中,您可以获得上传的文件,如:

var file = Request.Files[i]; // use in for loop
///// do some other thing ///
var filePath = your_path;
file.SaveAs(filePath);