admin管理员组文章数量:1345468
I am playing with Javascript accessor properties (I am restarting from zero to study javascript), trying to create getter and setter for a simple object, here the code:
var dummy = {
name: 'empty',
description: 'static description',
get nameAccessor(){return 'name value is: ' + this.name;},
set nameAccessor(value){ this.name = value;},
get descAccessor(){return 'desccription value is: ' + this.description;},
};
console.log(dummy.nameAccessor);
console.log(dummy.nameAccessor('Mazinga'));
console.log(dummy.nameAccessor);
But it throws an error:
Uncaught TypeError: Property 'nameAccessor' of object # is not a function
when it executes the setter code:
console.log(dummy.nameAccessor('Mazinga'));
What's going wrong here?
EDIT:
Ok, it seems to be not a well-known feature of javascript, butI followed this example from Javascript: Definitive Guide
var o = {
data_prop: value,
get accessor_prop() { /* function body here */ },
set accessor_prop(value) { /* function body here */ }
};
I am playing with Javascript accessor properties (I am restarting from zero to study javascript), trying to create getter and setter for a simple object, here the code:
var dummy = {
name: 'empty',
description: 'static description',
get nameAccessor(){return 'name value is: ' + this.name;},
set nameAccessor(value){ this.name = value;},
get descAccessor(){return 'desccription value is: ' + this.description;},
};
console.log(dummy.nameAccessor);
console.log(dummy.nameAccessor('Mazinga'));
console.log(dummy.nameAccessor);
But it throws an error:
Uncaught TypeError: Property 'nameAccessor' of object # is not a function
when it executes the setter code:
console.log(dummy.nameAccessor('Mazinga'));
What's going wrong here?
EDIT:
Ok, it seems to be not a well-known feature of javascript, butI followed this example from Javascript: Definitive Guide
var o = {
data_prop: value,
get accessor_prop() { /* function body here */ },
set accessor_prop(value) { /* function body here */ }
};
Share
Improve this question
edited Aug 30, 2012 at 10:52
Nico Giangregorio
asked Aug 30, 2012 at 10:38
Nico GiangregorioNico Giangregorio
1051 silver badge5 bronze badges
1
- Object properties are always visible. No need for getters there. what you want to probably do is using a function and expose some of the variables in the return statement. – Christoph Commented Aug 30, 2012 at 10:44
3 Answers
Reset to default 13An accessor is not a function as a property of the object ("method"), but a function that is called when that property is assigned (set) or retrieved (get). Use
dummy.nameAccessor = 'Mazinga';
to invoke the setter function.
In contrast, dummy.nameAccessor('Mazinga')
gets the property "nameAccessor" (which results in the name string) and then tries to call it as a function, which will fail. It would work if your getter returned a function, but that is not what you want here.
dummy.nameAccessor
is not a function, it is a string name value is: empty
.
Your methods syntax is not correct, try :
var dummy = {
name: 'empty',
description: 'static description',
getName : function(){return 'name value is: ' + this.name;},
setName : function(value){ this.name = value;},
getDesc : function(){return 'description value is: ' + this.description;}
};
本文标签: javascriptAccessors setter does not workStack Overflow
版权声明:本文标题:javascript - Accessors: setter does not work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743781025a2537829.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论