gpt4 book ai didi

javascript - 使用 bowserify 从导出模块创建一个新对象

转载 作者:行者123 更新时间:2023-11-30 10:20:24 25 4
gpt4 key购买 nike

我正在尝试使用我从使用 browserify 的 javascript 文件公开的对象,但我不断收到错误 Uncaught TypeError: undefined is not a function

这是一个例子:

foo.js:

var foo = function() {
this.f1 = function(){
console.log('function1')
}
this.f2 = function(){
console.log('function2')
}
};

module.exports = foo;

我正在尝试使用 index.html 中的 foo

输入命令后:browserify foo.js > bundle.js

并将 bundle.js 包含到 html 文件中。

index.html:

<html>
<head>
<script src="./bundle.js"></script>
<script>
var foo = new foo(); // Uncaught TypeError: undefined is not a function

foo.f1();
</script>
</head>

<body>

</body>
</html>

我在使用 browserify 时做错了什么?提前致谢。


编辑:错误的例子。

原始错误示例

foo.js:

var foo = {
f1: function(){
console.log('function1')
},
f2: function(){
console.log('function2')
}
};

module.exports = foo;

最佳答案

如果你想使用 new,你应该像这样声明 foo 类:

foo = function() {
this.f1 = function(){
console.log('function1')
};
this.f2 = function(){
console.log('function2')
};
};

foo_obj = new foo();
foo_obj.f1();
foo_obj.f2();

而不是文字。否则,只是 foo 对象的方法。

var foo = {
f1: function(){
console.log('function1')
},
f2: function(){
console.log('function2')
}
};

foo.f1();
foo.f2();

更新:

让我们看看,我从未使用过 browserify,但根据他们的 docs ,你应该这样做:

foo.js

module.exports = function() {
this.f1 = function(){
console.log('function1')
},
this.f2 = function(){
console.log('function2')
}
};

主要.js

var foo = require('foo');

然后,做:

browserify main.js -o bundle.js

最后导入 bundle.js 并使用 new foo() 在脚本中创建对象。

关于javascript - 使用 bowserify 从导出模块创建一个新对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21717238/

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