一个例子
generator.js
:
exports.read = function *(){
var a = yield read('co.github.js');
var b = yield read('co.recevier.js');
var c = yield read('co.yield.js');
console.log([a,b,c]);
}
function read(file) {
return function(fn){
fs.readFile(file, 'utf8', fn);
}
}
co.js
:
var co = require('co');
var fs = require('fs');
var gen = require('./generator')
/*function read(file) {
return function(fn){
fs.readFile(file, 'utf8', fn);
}
}*/
co(gen.read)()
似乎exports
不支持生成器功能。
require, module, __filename, __dirname) { module.exports.read = function *(){
^
SyntaxError: Unexpected token *
at exports.runInThisContext (vm.js:69:16)
at Module._compile (module.js:432:25)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:349:32)
at Function.Module._load (module.js:305:12)
at Function.Module.runMain (module.js:490:10)
at startup (node.js:123:16)
at node.js:1027:3
为什么我要这样做?我只想将我的数据与控制器分开。有什么方法可以解决吗?
答案 0 :(得分:3)
您可以使用变量来存储它,然后将其导出:
var myGenerator = function *() {
// ...
}
module.exports = myGenerator;
在另一个文件中,您可以require
:
var myGen = require('./myfirstfile.js');
// myGen is now myGenerator from above
答案 1 :(得分:2)
您可以导出任何您想要的内容,但请不要在公共模块中导出生成器功能。发电机是控制流黑客。相反,使用co@4
exports.fn = co.wrap(function* () {
return yield something()
}
答案 2 :(得分:0)
这可能是个问题:
NodeJS console SyntaxError: Unexpected token * for generator
此外,我不会导出任何不是对象的东西,特别是在ES6中有你可以使用的课程。