gpt4 book ai didi

JavaScript 小部件 : Uncaught TypeError: Object # has no method 'add'

转载 作者:行者123 更新时间:2023-12-02 18:18:18 24 4
gpt4 key购买 nike

下面是一些解释错误的示例代码:

HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Widget Test</h1>
<script type="text/javascript">
(function() {
var script = document.createElement('script'); script.type = 'text/javascript';
script.async = true;
script.src = 'http://localhost/job/widget.js';
var s = document.getElementsByTagName('head')[0].appendChild(script);
})();
</script>
<div id="list" data-cnumber="21"></div>
</body>
</html>


widget.js:

(function() {
var a = new app();
var a1 = new app1();

function app() {
this.a;
this.b;
}
app.prototype.add = function () {

};

function app1() {
this.a;
this.b;
this.c;
this.add();
}
app1.prototype.add = function () {

};
})();
  1. 这是错误 - “Uncaught TypeError: Object # has no method 'add'”
  2. 在对这两个对象执行 console.log 时,我可以看到它们的属性,但由于某种原因看不到它们的方法。

出了什么问题?

最佳答案

您在调用构造函数之后创建原型(prototype)成员,因此它们在构造函数调用期间不可用,必须在调用构造函数之前创建它们。

(function() {
app.prototype.add = function () {

};
app1.prototype.add = function () {

};

var a = new app();
var a1 = new app1();

function app() {
this.a;
this.b;
}


function app1() {
this.a;
this.b;
this.c;
this.add();
}

})();

关于JavaScript 小部件 : Uncaught TypeError: Object #<app1> has no method 'add' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19070647/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com