我试图遵循this的答案,以了解如何使用另一个文件中的功能。我编写了以下代码:
function.js
export function add1(val){
return val+1
}
code.js
import { add1 } from './function.js'
console.log(add1(7))
但是,当我在Mac上的控制台中运行node code.js
时,出现以下错误:
/path ... /code.js:1
(function (exports, require, module, __filename, __dirname) { import { add1 } from './function.js';
SyntaxError: Unexpected token import
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
...
将js文件中的函数导入另一个js文件的正确方法是什么?
请注意,我正在使用节点版本v8.11.1