获取TypeError:*不是函数错误

时间:2017-03-18 21:07:47

标签: javascript node.js express

我在server.js中收到以下错误:

TypeError: routing is not a function

routing(app);

routing.js:

// JavaScript source code
var friends = require('./../controllers/friends.js');

module.export = function(app)
{...}

1 个答案:

答案 0 :(得分:0)

这很简单,你只是以错误的方式输出(拼写错误)。你应该改为module.exports。你得到的结果是说你调用这个模块的其他模块找不到它(你使用了带给你undefined的函数,然后你试着调用一些不是函数的函数,只是调用{{ 1}}值:

undefined

用于获取信息:

Stack Overflow - module.exports
Node.JS Module Docs