TypeError: can't define property "x": "obj" is not extensible - JavaScript 编辑
The JavaScript exception "can't define property "x": "obj" is not extensible" occurs when Object.preventExtensions()
marked an object as no longer extensible, so that it will never have properties beyond the ones it had at the time it was marked as non-extensible.
Message
TypeError: Cannot create property for a non-extensible object (Edge) TypeError: can't define property "x": "obj" is not extensible (Firefox) TypeError: Cannot define property: "x", object is not extensible. (Chrome)
Error type
What went wrong?
Usually, an object is extensible and new properties can be added to it. However, in this case Object.preventExtensions()
marked an object as no longer extensible, so that it will never have properties beyond the ones it had at the time it was marked as non-extensible.
Examples
Adding new properties to a non-extensible objects
In strict mode, attempting to add new properties to a non-extensible object throws a TypeError
. In sloppy mode, the addition of the "x" property is silently ignored.
'use strict';
var obj = {};
Object.preventExtensions(obj);
obj.x = 'foo';
// TypeError: can't define property "x": "obj" is not extensible
In both, strict mode and sloppy mode, a call to Object.defineProperty()
throws when adding a new property to a non-extensible object.
var obj = { };
Object.preventExtensions(obj);
Object.defineProperty(obj,
'x', { value: "foo" }
);
// TypeError: can't define property "x": "obj" is not extensible
To fix this error, you will either need to remove the call to Object.preventExtensions()
entirely, or move it to a position so that the property is added earlier and only later the object is marked as non-extensible. Of course you can also remove the property that was attempted to be added, if you don't need it.
'use strict';
var obj = {};
obj.x = 'foo'; // add property first and only then prevent extensions
Object.preventExtensions(obj);
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论