最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Calling a method from inside of another class - Stack Overflow

programmeradmin0浏览0评论

I have a node class like this:

var Classes = function () {
};

Classes.prototype.methodOne = function () {
    //do something
};

when i want to call methodOne, i use this:

this. methodOne();

And it works. But right now i have to call it from inside of another method of another class. This time its not works and cant access to methodOne :

var mongoose = new Mongoose();
mongoose.save(function (err, coll) {
  //save to database
  this. methodOne(); //this does not work
}

how i can call methodOne? i use Classes.methodOne() but it's not work

I have a node class like this:

var Classes = function () {
};

Classes.prototype.methodOne = function () {
    //do something
};

when i want to call methodOne, i use this:

this. methodOne();

And it works. But right now i have to call it from inside of another method of another class. This time its not works and cant access to methodOne :

var mongoose = new Mongoose();
mongoose.save(function (err, coll) {
  //save to database
  this. methodOne(); //this does not work
}

how i can call methodOne? i use Classes.methodOne() but it's not work

Share Improve this question edited Jun 30, 2015 at 4:37 Fcoder asked Jun 30, 2015 at 4:36 FcoderFcoder 9,22618 gold badges68 silver badges103 bronze badges 2
  • 1 this refers to mongoose Class – Walter Chapilliquen - wZVanG Commented Jun 30, 2015 at 4:37
  • @wZVanG: yes but i want to access main class – Fcoder Commented Jun 30, 2015 at 4:38
Add a ment  | 

3 Answers 3

Reset to default 5

this inside the save callback is in a new context and is a different this than the outside one. Preserve it in a variable where it has access to methodOne

var that = this;
mongoose.save(function (err, coll) {
  //save to database
  that.methodOne();
}

What you can do is create an object of class Classes inside your other class and refer that method using this object: Ex:

var objClasses;
var mongoose = new Mongoose();
mongoose.save(function (err, coll) {
  //save to database
objClasses = new Classes();
  objClasses. methodOne(); //this should work
}

If it doesn't work please explain what exactly you want to achieve.

You need to create variable outside of mongoose function.

var self = this;

var mongoose = new Mongoose();
mongoose.save(function (err, coll) {
  //save to database
  self.methodOne(); //If you call `this` from here, This will refer to `mongoose` class
}

If you are in an environment that works with ES6 you can use the Arrow expression:

var mongoose = new Mongoose();
mongoose.save((err, col) => {
    //save to database
    this.methodOne();
})
发布评论

评论列表(0)

  1. 暂无评论