我正在使用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";
}
}