在 foo.js
中class Foo {
run(){
console.log("test");
}
}
在 index.js
中'use strict'
var test = require('./foo.js'),
Test = new test();
Test.run();
如何在iojs 3中导出Foo类?
我尝试过这种方式并且工作,但我不知道这是否正确:
module.exports = class Foo {
run(){
console.log("test");
}
}
答案 0 :(得分:0)
在当前的io.js中,您可以执行以下操作来导出类,以便可以使用require()导入它:
'use strict'
class Foo {
}
module.exports = Foo;
和
const Foo = require('./foo');