0

我在我的 Angular 2 应用程序中使用 Kendo Upload。我已经为错误消息和文件 允许大小注入了 servcie ,但是当KendoValidator调用时, this.service已经未定义

 export class MyUpload implements AfterViewInit {

  private message:string="message error":


    constructor() {
    }



    ngAfterViewInit(): any {
         $("#files").kendoUpload({
            multiple: false

        });
        $("#uploadForm").kendoValidator({
            messages: {
                fileSize: message
            },
            rules: {
                fileSize: function (e: any) {

                   return ....;
                }
            },
            validateOnBlur: false
        });
    }

如何使用 this.service 获取大小和消息?

4

0 回答 0