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

How do you create a pointer to an object property in javascript? - Stack Overflow

programmeradmin1浏览0评论

If I have an object like this:

obj = {a:{aa:1}, b:2};

and I want to create a shortcut variable (pointer to obj.a.aa) x like this:

x = obj.a.aa;

and then I want to assign the value 3 to obj.a.aa using x like this:

x = 3;  // I would like for obj.a.aa to now equal 3
console.log(obj.a.aa); // 1  (I want 3)

How can I set x up to result in the value 3 going into obj.a.aa?

I understand that obj.a.aa is a primitive, but how can I define a variable that points to it which I can then use to assign a value to the property?

If I have an object like this:

obj = {a:{aa:1}, b:2};

and I want to create a shortcut variable (pointer to obj.a.aa) x like this:

x = obj.a.aa;

and then I want to assign the value 3 to obj.a.aa using x like this:

x = 3;  // I would like for obj.a.aa to now equal 3
console.log(obj.a.aa); // 1  (I want 3)

How can I set x up to result in the value 3 going into obj.a.aa?

I understand that obj.a.aa is a primitive, but how can I define a variable that points to it which I can then use to assign a value to the property?

Share asked Apr 28, 2014 at 15:36 cisociso 3,0507 gold badges37 silver badges64 bronze badges 2
  • 1 pretty sure you can't. – Kevin B Commented Apr 28, 2014 at 15:38
  • Related: Is JavaScript a pass-by-reference or pass-by-value language? and Does JavaScript pass by reference? – Jonathan Lonowski Commented Apr 28, 2014 at 15:45
Add a ment  | 

3 Answers 3

Reset to default 9

You cannot use x = value as that will not keep any references, just a copy. You would have to reference the parent branch in order to do so:

x = obj.a;

then set the value:

x.aa = 3;

Or, use a function:

var set_x = function(val){
  obj.a.aa = val;
}

Of course you can't - you're not trying to modify the reference that is the name of the object property, you're trying to modify the object. To modify the object, you'll need a reference to the object.

That being said there's probably a creative way to do this. Create a function that takes as a constructor the object, and give the function a customer = setter or method that modifies the object reference. Something like this might work.

发布评论

评论列表(0)

  1. 暂无评论