Ошибка отклонения необработанного обещания: «Ошибка сети» - PullRequest
0 голосов
/ 06 ноября 2018

ошибка:
Unhandled promise rejection Error: "Network Error"

мое внешнее приложение vue работает в http://localhost:8080, а внутреннее приложение работает в http://localhost:8082 Я запрашиваю запрос на получение от axios из файла vue к серверной части.

onSubmit(){
        return axios.get(`http://192.168.43.35:8082/auth/$(this.email)-$(this.password)`).then(function(response){console.log(response)}).catch(function(error){
            throw error;
            console.log(error);
        });

и вот моя конечная точка

app.get('/auth/:email-:password',cors(),(req,res)=>{
  MongoClient.connect(url, function(err, db) {
  if (err) console.log(err);
  var dbo = db.db("leaveautomation");
  dbo.collection("letters").find({email:req.params.email, password:req.params.password},{ projection: { _id: 0, email: 1,} }).toArray(function(err, result) {
  if (err) console.log(err);
  res.send({
    email: result,
    length: result.length
  });
  db.close();
});
  });})

в чем может быть причина этой ошибки!?

1 Ответ

0 голосов
/ 06 ноября 2018

Добавили ли вы исходные заголовки в ваше промежуточное ПО на стороне сервера?

app.use(function (req, res, next) {
    // Website you wish to allow to connect
    res.setHeader('Access-Control-Allow-Origin', '*');

    // Request methods you wish to allow
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');

    // Request headers you wish to allow
    res.setHeader('Access-Control-Allow-Headers', 'Accept,X-Requested-With,Origin,Content-Type');

    // Set to true if you need the website to include cookies in the requests sent
    // to the API (e.g. in case you use sessions)
    res.setHeader('Access-Control-Allow-Credentials', true);

    // Pass to next layer of middleware
    next();
});
...