javascript - 在原型(prototype)方法中修改内部函数的实例变量

标签 javascript oop scope

我正在尝试将数据库中的数据建模为服务器端 JavaScript (Node) 中的“类”。 目前,我只是在适当的情况下使用带有原型(prototype)方法的传统构造函数模式,并将构造函数作为整个 module.exports 公开。事实上,这是服务器端对于问题的核心并不重要,但我想我应该提供它作为引用。

代码的问题区域如下所示:

User.prototype.populate = function() {  
    var that = this;    
    db.collection("Users").findOne({email : that.email}, function(err, doc){
        if(!err) {
            that.firstName  = doc.firstName;
            that.lastName   = doc.lastName;
            that.password   = doc.password;
        }
        console.log(that); //expected result
    });
   console.log(that); //maintains initial values
};

每当我调用此函数时,一旦 findOne() 完成,对对象的更改就不会保留。我意识到 this 的作用域更改为具有新函数作用域的全局对象,因此我将其引用保留为 that。如果 console.log(that) 来自匿名函数,数据将按预期显示在其属性中。但是,如果我在函数完成后记录,它将保持函数开始时的状态。

这里发生了什么以及如何按预期更改实例变量?

最佳答案

"However, if I log that once the function has finished, ..."

据此,我假设您正在做类似的事情......

var user = new User

user.populate();

console.log(user);

如果是这样,console.log 将在调用 .findOne()异步回调之前运行很长时间。

任何依赖于 findOne 响应的代码都需要在回调内调用。


编辑:您的更新与我上面的示例略有不同,但原因是相同的。

将回调传递给 findOne 方法的全部原因是它执行异步事件。如果没有,就没有回调的理由。您只需将内部代码直接放在对 findOne 的调用之后,就像对 console.log() 所做的那样。

但由于它是异步的,因此后续代码不会等待执行。这就是您在控制台中获取未填充对象的原因。

如果您向每个 console.log() 添加标签,您会发现它们执行不按顺序。


var that = this;    
db.collection("Users").findOne({email : that.email}, function(err, doc){
    if(!err) {
        that.firstName  = doc.firstName;
        that.lastName   = doc.lastName;
        that.password   = doc.password;
    }
    console.log("inside the callback", that); // this happens Last!!!
});

console.log("outside the callback", that); // this happens First!!!

因此,一旦您观察 console.log 调用的顺序,就会清楚地看到空调用发生在回调内的调用之前。


编辑:您还可以让您的 .populate() 方法接收在 .findOne< 内部调用的回调 回调。

User.prototype.createNickName = function () {
    this.nickname = this.firstName.slice(0,3) + '_' + this.lastName.slice(0,3);
};

    // >>>------------------------------v----receive a function argument...
User.prototype.populate = function(callback_func) {  
    var that = this;    
    db.collection("Users").findOne({email : that.email}, function(err, doc){
        if(!err) {
            that.firstName  = doc.firstName;
            that.lastName   = doc.lastName;
            that.password   = doc.password;
        }

          // all users will have the "createNickName()" method invoked
        that.createNickName();

          // ...and invoke it in the callback.
        callback_func.call(that);

          // By using .call(), I'm setting the "this" value
          //    of callback_func to whatever is passed as the first argument
    });
};

   // this user wants to log the firstName property in all caps
var user1 = new User;

user1.populate(function() {
    console.log(this.firstName.toUpperCase());
});


   // this user wants to log the the whole name
var user2 = new User;

user2.populate(function() {
    console.log(this.firstName + ' ' + this.lastName);
});


   // this user wants to verify that the password is sufficiently secure
var user3 = new User;

user3.populate(function() {
    console.log(verify_password(this.password));
});

关于javascript - 在原型(prototype)方法中修改内部函数的实例变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10150207/

相关文章:

c++ - 对象的底层类型是如何在运行时确定的?

c# - 如何避免在服务层上引用 Entity Framework 的需要?

php - 我们什么时候应该使用类,什么时候不应该

c++ - 离开作用域时不调用析构函数

javascript - 用 10 个随机字符生成 3 个字符

php - 还记得我 JavaScript 吗?

javascript - 如何在 javascript 中将带有文本的选取框元素添加到 div

c# - 在循环内部或外部声明一个变量更好吗?

php - 无法访问特征中的 protected 属性

javascript - JS加入购物车