ReferenceError:未在Object。<anonymous> </anonymous>中定义“routes”

时间:2015-02-22 22:23:04

标签: node.js express

我有以下代码:

var vuelo=require('../flights'); 
var flights1= flight({  number:1,
origin: 'Venezuela',    destination: 'Canada' }); 

var flights2= flight({
    number:2,   
    origin: 'Colombia',
    destination: 'Argentina' 
});

exports.flights1=function(req, res) {
    res.json(flights1.getInformation()); 
};

exports.flights2=function(req,res) {
    res.json(flights2.getInformation()); 
};

module.exports = routes;

在第module.exports = routes;行中,我收到以下错误:

ReferenceError: "routes" is not defined at Object.<anonymous>

但我不知道这个错误意味着什么,我失败了。

0 个答案:

没有答案