kendoUpload读取属性长度js错误

时间:2019-11-13 17:51:23

标签: kendo-ui kendo-upload

我正在使用kendoUpload控件,并且在文件上传后选择删除按钮时,我遇到了JS错误,这可能与onSuccess函数有关吗?

我按下移除按钮后,出现

js错误 jquery-1.11.0.min.js:2未捕获的TypeError:无法读取未定义的属性“ length” 在Function.map(jquery-1.11.0.min.js:2)

 function onSuccess(e) {
 if (e.operation == "upload") 
 {
       console.log("%onSuccess %s", 'color:red', "Started");
       e.sender.options.async.removeUrl = "/Shared/DeleteFileUploaded.ashx?FileManagerId=" + 
       e.response.resultStatus.ReturnId + "&Action=Agenda";
       }
 }

enter image description here

0 个答案:

没有答案