gpt4 book ai didi

javascript - 如何在ajax成功中访问对象方法

转载 作者:行者123 更新时间:2023-11-30 16:57:22 25 4
gpt4 key购买 nike

<分区>

事实上我需要访问 FileUploader.prototype.saveImage() 方法像下面的代码:

function FileUploader(object) {
this.checkInputs(object);
if (this.isImageSelected()) {
this.beforeInit(object);
this.prepareData();
this.uploadFile().success(function (response) {
var response = jQuery.parseJSON(response);
if (response.status != null && response.status) {
this.saveImage(response.data);
} else {
this.setError({
error_code: 3,
error_message: " error found "
});
}
});
}
}

FileUploader.prototype.saveImage = function (data) {
...
}

之前调用this.saveImage()返回错误

未捕获的类型错误:undefined 不是函数

谁能帮帮我

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com