Home > Web Front-end > JS Tutorial > body text

Solution to 404 local request using axios + express under Vue 2.5.2

亚连
Release: 2018-06-05 16:33:40
Original
2373 people have browsed it

Now I will share with you a solution to axios express local request 404 under Vue 2.5.2. It has a good reference value and I hope it will be helpful to everyone.

I have been learning Vue recently, and today I tried to use axios to simulate local network requests. During the process of using it, I found that the interface request kept getting 404. Later I found that in the latest project built by Vue-cli, the interface request should be written like this.

1. Introducing related dependencies

var axios = require('axios')
const express = require('express');
var app = express();
var apiRoutes = express.Router();
app.use('/api', apiRoutes);
Copy after login

2. Processing network requests

In the previous project, we handled interface access in dev-server.js like this

apiRoutes.get('/getList', function (req, res) {
 //处理网络请求

})
Copy after login

Now the project built by default does not have a dev-server.js file, and then we can use webpack. Add ur to dev.conf.js.

before(app) {
  app.get('/api/getList', function(req, res) {
  //处理网络请求
  });
 },
Copy after login

3. Recompile

npm run dev
Copy after login

At this point, the project is running and the interface can be accessed normally.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Method of cross-domain request through jQuery JSONP (detailed tutorial)

Through implementation in Vue2.0 http request and loading display

Detailed interpretation of the difference between method and computed in Vue (detailed tutorial)

The above is the detailed content of Solution to 404 local request using axios + express under Vue 2.5.2. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!