因此,当我使用 require('fileName.js') 将外部 JavaScript 文件添加到我的主 index.js 文件时。
在 index.js
const caltor = require('./calculate.js');
console.log(caltor.adding(5,7));
在我的 calculate.js 中
function adding (i,y){
return i+y;
}
顺便说一句,我正在使用 nodejs 来执行。
错误说:
console.log(caltor.adding(5,7));
^
TypeError: caltor.adding is not a function
不负相思意
胡说叔叔
相关分类