0

我正在尝试上传大小超过 1Mb 的文件,并抱怨文件太大。我将大小设置为 50 MB,但这似乎没有生效。我究竟做错了什么?请帮忙

 @Component({
        moduleId: module.id,
        //define the element to be selected from the html structure.
        selector: 'NeedAnalysisConsult',
        //location of our template rather than writing inline templates.
        templateUrl: 'need-analysis-consultation.component.html',

    })
    export class NeedAnalysisConsultationComponent implements OnInit {
        model:any={};
        consultationDate: Date;
        organisation: string;
        devCode:String;
        maxFileSize = 50 * 1024 * 1024;


         //declare a property called fileuploader and assign it to an instance of a new fileUploader.
        //pass in the Url to be uploaded to, and pass the itemAlais, which would be the name of the //file input when sending the post request.
        public uploader:FileUploader = new FileUploader({url: URL,isHTML5: true, itemAlias: 'consultation',maxFileSize: this.maxFileSize});
        //This is the default title property created by the angular cli. Its responsible for the app works
        title = 'app works!';

        ngOnInit() {
        //override the onAfterAddingfile property of the uploader so it doesn't authenticate with //credentials.
          this.uploader.onAfterAddingFile = (file)=> { file.withCredentials = false; };
          this.uploader.onBuildItemForm=(item:any,form:any)=>{
                form.append('devCode',this.model.programmeCode);
                form.append('date',this.model.consultationDate);
                form.append('organization',this.model.organisation);

          };
        //overide the onCompleteItem property of the uploader so we are
        //able to deal with the server response.
          this.uploader.onCompleteItem = (item:any, response:any, status:any, headers:any) => {
                console.log("FileUpload:successfully uploaded:", item, status, response);
                if (status==201){

                  alert("FileUpload: successfully");

                }
                else {
                 alert("FileUpload:"+response);

              }

            };
        }

我正在尝试上传大小超过 1Mb 的文件,并抱怨文件太大。我将大小设置为 50 MB,但这似乎没有生效。我究竟做错了什么?请帮忙

4

2 回答 2

0

只有两件事可能导致这种情况:

客户端 如果 ng2-file-upload maxFileSize参数小于1MB

服务器端 如果您在服务器端使用 PHP,请在php.ini中调整以下参数

  1. post_max_size = 50M # 意味着无论上传多少文件,单个发布请求在任何给定时间都不应超过 50MB。

  2. upload_max_filesize = 50M # 表示每个请求的单个文件不应超过 50MB

  3. max_file_uploads = 10 # 表示单个请求只能上传 10 个文件

于 2020-11-18T18:56:24.463 回答
0

我已经测试了你的方法,它在我的服务器上上传正常。检查您的服务器是否配置为接受大于 1 MB 的文件。为了能够确认来自服务器的错误响应,您可以实现以下回调,就像您在onCompleteItem.

 onSuccessItem(item: FileItem, response: string, status: number, headers:ParsedResponseHeaders): any {
            //this gets triggered only once when first file is uploaded       
     }
    onErrorItem(item: FileItem, response: string, status: number, headers: 
           ParsedResponseHeaders): any {
                let error = JSON.parse(response); //error - server response            
            }

然后,您可以订阅它们,如下所示:

this.uploader.onErrorItem = (item, response, status, headers) => this.onErrorItem(item, response, status, headers);
this.uploader.onSuccessItem = (item, response, status, headers) => this.onSuccessItem(item, response, status, headers);

这样,您将能够检查错误是否来自服务器。

于 2018-02-20T10:48:15.460 回答