我试图实现的是创建一个包含多个功能的模块。
module.js:
module.exports = function(firstParam) { console.log("You did it"); },
module.exports = function(secondParam) { console.log("Yes you did it"); },
// This may contain more functions
main.js:
var foo = require('module.js')(firstParam);
var bar = require('module.js')(secondParam);
我的问题是,firstParam是一个对象类型和secondParam是一个URL字符串,但当我有它总是抱怨类型是错误的。
我如何声明多个模块。在这种情况下出口?
这只是供我参考,因为我想要达到的目的可以通过这个来实现。
在module.js中
我们可以这样做
module.exports = function ( firstArg, secondArg ) {
function firstFunction ( ) { ... }
function secondFunction ( ) { ... }
function thirdFunction ( ) { ... }
return { firstFunction: firstFunction, secondFunction: secondFunction,
thirdFunction: thirdFunction };
}
在main.js中
var name = require('module')(firstArg, secondArg);
两种类型的模块导入和导出。
类型1 (module.js):
// module like a webpack config
const development = {
// ...
};
const production = {
// ...
};
// export multi
module.exports = [development, production];
// export single
// module.exports = development;
类型1 (main.js):
// import module like a webpack config
const { development, production } = require("./path/to/module");
类型2 (module.js):
// module function no param
const module1 = () => {
// ...
};
// module function with param
const module2 = (param1, param2) => {
// ...
};
// export module
module.exports = {
module1,
module2
}
类型2 (main.js):
// import module function
const { module1, module2 } = require("./path/to/module");
如何使用导入模块?
const importModule = {
...development,
// ...production,
// ...module1,
...module2("param1", "param2"),
};