Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 nodeJS,并将其放在文件 main.js 的头部:
var par = require("C:/Us/ht");
在 ht.js 文件中,我有一个名为doJob().
doJob()
然后当我在 main.js 中尝试以下代码时:
function cr(LTDa){ par.doJob(); }
我收到以下错误:
Object #<Object> has no method 'doJob'
我的错误在哪里?
您需要将函数添加为导出对象的属性,如此处所述
换句话说,您的 ht.js 文件中应该包含以下代码:
exports.doJob = function() { //your code here };