邮递员未显示get请求的输出

时间:2019-04-11 14:04:20

标签: node.js postman

我正在从事一个node.js项目。我使用Visual Studio代码作为文本编辑器。我使用邮递员来测试API请求。

我的 app.js 文件如下

import express from 'express';
var app = express();
var PORT = 3000;

app.get('/', (req, res) => {
   res.json({
      msg: 'ruwan liyanage'
   });
});

const invoices = [];

app.get('/invoices', (req, res) => {
   res.json(invoices);
});

app.listen(PORT, function() {
   console.log('Hi welcome');
});

//# sourceMappingURL=app.js.map

后面是 app.js 的第一个功能的邮递员。

app.get('/', (req, res) => {
    res.json({
        msg: 'ruwan liyanage'
    });
});

结果邮递员展示了这个。

{
   "msg": "ruwan liyanage"
}

enter image description here

然后为什么不对后面的第二个功能起作用

const invoices = [];

app.get('/invoices', (req, res) => {
    res.json(invoices);
});

enter image description here

当我输入http://localhost:3000/invoices时,它显示了这种输出 Cannot GET /invoices

我该怎么办

0 个答案:

没有答案