NodeJS此参考

时间:2017-02-19 11:29:00

标签: javascript node.js

我有以下代码

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。有人能解释我发生了什么吗?

2 个答案:

答案 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存储到该模块中。