ошибка:
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();
});
});})
в чем может быть причина этой ошибки!?