19

一个例子

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

我为什么要这样做?我只想将我的数据与控制器分开。有什么办法解决吗?

4

3 回答 3

5

您可以使用变量来存储它,然后将其导出:

var myGenerator = function *() {
    // ...
}

module.exports = myGenerator;

然后,在另一个文件中,您可以require

var myGen = require('./myfirstfile.js');
// myGen is now myGenerator from above
于 2016-01-22T10:46:12.650 回答
2

你可以导出任何你想要的,但请不要在公共模块中导出生成器函数。生成器是控制流黑客。相反,返回承诺co@4

exports.fn = co.wrap(function* () {
  return yield something() 
}
于 2014-12-07T03:50:55.660 回答
0

这可能是问题:

NodeJS 控制台 SyntaxError: Unexpected token * for generator

此外,我不会导出任何不是对象的东西,特别是在 ES6 中有可供您使用的类。

于 2016-07-13T18:15:24.340 回答