//file.js export const f = function (a,b) { console.log(a) console.log(b) } //main.js import * as foo from "file.js" foo.f(b=1); Uncaught ReferenceError: b is not defined //报错在 foo.f(b=1)这行.
认证高级PHP讲师
应该是在函数声明的时候,赋默认值吧?
应该是在函数声明的时候,赋默认值吧?