我正在研究openlayers
javascript 库的源代码。在 的文件中source/CartoDB.js
,我发现有以下内容:
class CartoDB extends XYZ {
constructor () {}
initializeMap_() {
...
const client = new XMLHttpRequest();
client.addEventListener('load', this.handleInitResponse_.bind(this, paramHash));
client.addEventListener('error', this.handleInitError_.bind(this));
client.open('POST', mapUrl);
client.setRequestHeader('Content-type', 'application/json');
client.send(JSON.stringify(this.config_));
}
handleInitResponse_(paramHash, event) {
...
}
handleInitError_(event) {
...
}
}
我清理代码并删除与我的问题无关的代码。
我的困惑点是以下两行:
client.addEventListener('load', this.handleInitResponse_.bind(this, paramHash));
client.addEventListener('error', this.handleInitError_.bind(this));
我认为this.handleInitResponse_.bind(this, paramHash)
just equalsthis.handleInitResponse_
和this.handleInitError_.bind(this)
just equals to this.handleInitError_
。而这两个方法只是在 CartoDB 类中定义的。
那为什么要这样处理呢?