我在使用“this”关键字时遇到了一些问题。我明白为什么以下内容不起作用,但不知道如何解决它......
//Namespace
var CPT = CPT || {};
//Constructor
CPT.Grid = function (hostElement, surlWeb) {
this.hostElement = hostElement;
this.surlWeb = surlWeb;
}
//Prototype
CPT.Grid.prototype = {
init: function () {
$.ajax({
url: this.surlWeb,
headers: { "accept": "application/json" },
success: this.showItems
});
},
showItems: function (data) {
//do some work
// this is the error... no access to hostElement because 'this' is the AJAX call
this.hostElement.html(items.join(''));
}
}
function getProducts() {
var grid = new CPT.Grid($("#displayDiv"), someUrl);
grid.init();
}
我知道我可以通过没有单独的 showItems 函数来解决这个问题,但我想看看如何以另一种方式做到这一点。理想情况下,我想将对当前对象的引用传递给成功处理程序,但无法弄清楚如何做到这一点......