当前位置: 代码迷 >> Ruby/Rails >> function * (next){ 执行报错 SyntaxError: Unexpected token
  详细解决方案

function * (next){ 执行报错 SyntaxError: Unexpected token

热度:611   发布时间:2016-04-29 02:07:18.0
function * (next){ 执行报错 SyntaxError: Unexpected token *

这是因为  app.use(function * (){ 语句中有一个 * ,这种方式被称为generator functions ,一般写作function *(){...} 的形式,在此类function 中可以支持ES6的一种yield概念。

为了保证这种新型的方法可以编译通过,在运行node 命令的时候加上一个harmony参数就可以了:

node --harmony hello.js

假如在插件中使用的化可以引入harmony 并自执行。

harmonize = require('harmonize')()

  相关解决方案