Express.js服务器:使用中间件的PUT请求

时间:2018-09-11 17:29:25

标签: javascript node.js express server put

我有一个运行中的Node / Express服务器,正在使用它通过本地主机向外部API发出请求。如您在示例代码中所看到的,我正在对基本的GET请求使用node-fetch

对于每个请求,我都会为实际的外部服务器请求预先准备一个const url = BASE_URL

但是由于无法使用PUT-Request,我陷入了node-fetch的困境。那么,要通知Express服务器PUT-Request的实际URL,我该怎么办?

PUT请求直到此处都无法使用。

/* Route: Get Appointment it's availability times */
app.get('/availability/times/:id/:date/:locationId', (req, res) => {
  var id = req.params.id;
  var date = req.params.date;
  var locationId = req.params.locationId;
  const url = BASE_URL + '/availability/times?appointmentTypeID=' + id + '&date=' + date + '&calendarID=' + locationId;;
  fetch(url, {
      mode: "no-cors",
      method: "GET",
      headers: {
        'Content-Type': 'application/json',
        'X-Requested-With': 'content-type'
      },
    })
    .then(response => response.json())
    .then(json => {
      res.json(json);
    });
});

app.put('/appointments/:id/cancel', (req, res) => {
  var id = req.params.id;
  const url = BASE_URL + '/appointments/' + id + '/cancel';
  res.send(req.body)
});

1 个答案:

答案 0 :(得分:0)

如果您说fetch在您的put请求中未定义,请确保在所有路由var fetch = require('node-fetch')之前都要求在顶部。对于基本URL,应将其存储在配置文件中。创建一个名为config.js的文件,如下所示:

module.exports = {
  'BASE_URL': 'yoururlhere'
}

然后在您的快速服务器var config = require('pathToConfig');中要求此,您可以通过指定config.BASE_URL

来使用它

如果这没有帮助,请更具体说明您的实际问题是什么