我有以下代码
this.userInfo = 'bla';
request({
url: 'https://api.api.ai/v1/entities?v=20150910',
headers : {
Authorization: "Bearer " + process.env.APIAI_ACCESS_TOKEN
},
method: 'GET'
}, function (error, response, body) {
if (error) {
console.log('Error sending message: ', error);
} else if (response.body.error) {
console.log('Error: ', response.body.error);
}
console.log(this.userInfo);
}.bind(this));
当我尝试打印this.userInfo
变量时,我得到undefined
但我在bind()
上执行了this
。有人能解释我发生了什么吗?
答案 0 :(得分:3)
在this
的代码范围内被其他功能覆盖,因此您设置的值不可用。
当您使用this
调用bind时,它可以在side函数中使用,然后它具有与您设置的值相同的值,请参阅下面的更正代码。
let self= this;
self.userInfo = 'bla';
request({
url: 'https://api.api.ai/v1/entities?v=20150910',
headers : {
Authorization: "Bearer " + process.env.APIAI_ACCESS_TOKEN
},
method: 'GET'
}, function (error, response, body) {
if (error) {
console.log('Error sending message: ', error);
} else if (response.body.error) {
console.log('Error: ', response.body.error);
}
//scope of 'this' in callback function are removed, so have set value to self variable
console.log(self.userInfo);
}.bind(this));
答案 1 :(得分:0)
我强烈建议您查看MDN article on the this
keyword in JavaScript,对我而言,您似乎误解了JavaScript中this
关键字的用途。
在Node.js中,它也略有不同,在全局范围的浏览器中,this
始终为window
。
在Node.js中,所有模块都在自己的闭包中执行,而默认浏览器运行全局范围。
TL;据我所知,你不能在JS中编写这样的代码。 Check out this StackOverflow answer for more detail
您可能希望在该模块中设置变量,而不是使用this
,并将userInfo
存储到该模块中。