最佳答案
我正在使用 babel6
和我的宠物项目,我正在为 XMLHttpRequest
创建一个包装,我可以使用的方法:
const open = (method, url, something) => {
return this.xhr.open(method, url, something);
}
但是,对于属性,箭头函数不起作用:
get status() { return this.xhr.status; }
但是我不能使用箭头函数:
get status = () => this.xhr.status;
这是故意的吗?