NodeJS:Async / Await Raspberry Pi

时间:2017-09-01 16:01:34

标签: node.js asynchronous raspberry-pi async-await raspberry-pi3

我有一些代码在我的日常计算机上运行良好,但在尝试从覆盆子pi(3型号B)启动时会出现错误。错误如下:

jdbcTemplate(org.springframework.jdbc.core.JdbcTemplate) {
    dataSource = ref('dataSource')
}

我的代码很简单' setInterval(1500 ms),其中包含async / await:

>     setInterval(async function () {
>                 ^^^^^
>     
>     SyntaxError: missing ) after argument list
>         at exports.runInThisContext (vm.js:53:16)
>         at Module._compile (module.js:414:25)
>         at Object.Module._extensions..js (module.js:442:10)
>         at Module.load (module.js:356:32)
>         at Function.Module._load (module.js:311:12)
>         at Function.Module.runMain (module.js:467:10)
>         at startup (node.js:134:18)
>         at node.js:961:3

其他人有过这个问题吗? 在此先感谢!!

1 个答案:

答案 0 :(得分:4)

从v7.6开始,node.js支持

async/await。您需要升级已安装的node.js版本或使用Promises。