我在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)
{...}
答案 0 :(得分:0)
这很简单,你只是以错误的方式输出(拼写错误)。你应该改为module.exports
。你得到的结果是说你调用这个模块的其他模块找不到它(你使用了带给你undefined
的函数,然后你试着调用一些不是函数的函数,只是调用{{ 1}}值:
undefined
用于获取信息: