Object.prototype.__defineGetter__() - JavaScript 编辑
This feature is deprecated in favor of defining getters using the object initializer syntax or the Object.defineProperty()
API. While this feature is widely implemented, it is only described in the ECMAScript specification because of legacy usage. This method should not be used since better alternatives exist.
The __defineGetter__
method binds an object's property to a function to be called when that property is looked up.
Syntax
obj.__defineGetter__(prop, func)
Parameters
prop
- A string containing the name of the property to bind to the given function.
func
- A function to be bound to a lookup of the specified property.
Return value
Description
The __defineGetter__
allows a getter to be defined on a pre-existing object.
Examples
Non-standard and deprecated way
var o = {};
o.__defineGetter__('gimmeFive', function() { return 5; });
console.log(o.gimmeFive); // 5
Standard-compliant ways
// Using the get operator
var o = { get gimmeFive() { return 5; } };
console.log(o.gimmeFive); // 5
// Using Object.defineProperty
var o = {};
Object.defineProperty(o, 'gimmeFive', {
get: function() {
return 5;
}
});
console.log(o.gimmeFive); // 5
Specifications
Specification |
---|
ECMAScript (ECMA-262) The definition of 'Object.prototype.__defineGetter__()' in that specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论