邮递员:这似乎是连接到localhost:3000的错误。响应状态为0

时间:2016-12-14 05:56:23

标签: node.js mongodb angular express postman

我写了这个网络Api并在root上写了第一条路线,即在 localhost:3000 /或只是/ ,它将从mongodb返回一个文件(我不知道如果我们可以这样做,那就继续#34; /")像这样:

app.get('/data', function(req, res) {

quizz.findOne({ id: 1}, function (err, data) {
if (err) {
  console.log(err)
} else {
  console.log(data);
  res.json(data);
}
})})

我正在向客户提出这样的请求:

 this.http.get('https://localhost:3000/data').map(function (res) {
  let body = res.json();
  return body.body || {};
 }).subscribe((data) => {
  console.log(data);
 })

但是当我点击按钮时(实际上有一个方法,其中有请求方法)我得到了这个,我得到了这个:

enter image description here

还试过邮差得到这个错误:

这似乎是连接到http://localhost:3000/的错误。响应状态为0。

0 个答案:

没有答案