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

javascript - Accessing variable inside object property - Stack Overflow

programmeradmin2浏览0评论

So I encountered a problem. I have this object called myTree. And that object has properties. One of the properties contains a method like this:

prep: function (variable) {
    /* some code */
}

In that method there is an array myarray and I want to know, whether it is possible to access the content of that array, and if it is, how I would do that.

I've made a demo on jsFiddle, and in the end of the JavaScript window you can see that I'm alerting the object prep in which myarray is contained.

/

So I encountered a problem. I have this object called myTree. And that object has properties. One of the properties contains a method like this:

prep: function (variable) {
    /* some code */
}

In that method there is an array myarray and I want to know, whether it is possible to access the content of that array, and if it is, how I would do that.

I've made a demo on jsFiddle, and in the end of the JavaScript window you can see that I'm alerting the object prep in which myarray is contained.

http://jsfiddle/Wp7Xh/1/

Share Improve this question edited Jul 2, 2012 at 10:02 katspaugh 17.9k12 gold badges67 silver badges105 bronze badges asked Jul 2, 2012 at 9:52 madeyemadeye 1,4063 gold badges16 silver badges33 bronze badges 5
  • in your code example I noticed that you wrapped functions in parentheses, like property : (function() {...}) Can you please construe for what reason that is? – d.k Commented Jul 2, 2012 at 10:02
  • @caligula stackoverflow./questions/9053842/… – madeye Commented Jul 2, 2012 at 10:08
  • but you don't call these functions (in your jsfiddle example), you don't use (function() {...})(), you simply warp them but do not call (function() {...}). is there any reason for that which I don't know or is this the error (at least redundant thing)? – d.k Commented Jul 2, 2012 at 10:15
  • @caligula I'm calling this object methods on other places. And it's not an error. I just want to access some variables withing these functions, and with that I have a problem. Everything else is working just fine. – madeye Commented Jul 2, 2012 at 10:23
  • Possible duplicate of Access object properties within object – Damjan Pavlica Commented Nov 10, 2016 at 16:56
Add a ment  | 

1 Answer 1

Reset to default 10

JavaScript variables are function-scoped. It is not possible to access variables belonging to an inner scope (i.e. "function") from an outer scope.

If you want that kind of access, you must make the respective variable part of the outer scope.

var myTree = function() {
  var myarray = [];

  this.prep = function (variable) {
    myarray.push(variable);
  };
}

In your scenario, where you have nested objects, it's quite similar:

var myTree = {
  myarray: [],
  prep: function (variable) {
    this.myarray.push(variable);
  }
}

The only difference is the use of the this keyword.

When you define an object via the object literal syntax (obj = {prop: value}) instead of via a constructor (function Obj(value) { this.prop = value; }; obj = new Obj(value);), then all defined properties will be "public" by default.

When you call a function on that object, this will point to the respective object instance.

Accessing an "inner scope" variable from outside is still impossible. There's no way around that.

Generally speaking: You can access properties of the objects you construct. You can never access function local variables (except from the inside of nested functions).

发布评论

评论列表(0)

  1. 暂无评论