TypeError: More arguments needed - JavaScript 编辑
The JavaScript exception "more arguments needed" occurs when there is an error with how a function is called. More arguments need to be provided.
Message
TypeError: argument is not an Object and is not null (Edge) TypeError: Object.create requires at least 1 argument, but only 0 were passed TypeError: Object.setPrototypeOf requires at least 2 arguments, but only 0 were passed TypeError: Object.defineProperties requires at least 1 argument, but only 0 were passed
Error type
What went wrong?
There is an error with how a function is called. More arguments need to be provided.
Examples
Required arguments not provided
The Object.create()
method requires at least one argument and the Object.setPrototypeOf()
method requires at least two arguments:
var obj = Object.create();
// TypeError: Object.create requires at least 1 argument, but only 0 were passed
var obj = Object.setPrototypeOf({});
// TypeError: Object.setPrototypeOf requires at least 2 arguments, but only 1 were passed
You can fix this by setting null
as the prototype, for example:
var obj = Object.create(null);
var obj = Object.setPrototypeOf({}, null);
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论