Vue front and back end ports are inconsistentIn the config index.js file Just import the following code proxyTable: { '/api': { target: 'http://localhost:3000', //The backend interface to be accessed changeOrigin: true, pathRewrite: { '^/api': '/' //The configuration here is a regular expression. The one starting with /api will be replaced with '/api'. If the interface of the backend document is /api/list/xxx //The front-end API interface is written as: axios.get('/api/list/xxx'), and the actual access after processing is: http://news.baidu.com/api/list/xxx } }}, The port number of vue server startup is different every timeYesterday I ran a project given by a friend on my computer. Since he was using vue3.0 and I was using vue2.5.2, there was an error message when running his project. It might be a version problem. I followed the error message to download the plug-in, and his project worked. But since then, every time I run my project, I find that the port number is different. Solution:First download npm install [email protected] Reinstall dependencies npm install Restart the project npm run dev The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Solve the black screen problem after VMware installs Linux system and starts
>>: A simple method to merge and remove duplicate MySQL tables
<br /> CSS syntax for table borders The spec...
Table of contents Installation Steps Environment ...
Related articles: Beginners learn some HTML tags ...
Docker Installation There is no need to talk abou...
1. Make sure the system has the required libaio s...
Table of contents Environmental conditions Errors...
Search Mirror docker search rocketmq View image v...
background Indexes are a double-edged sword. Whil...
To solve the problem that Deepin cannot start Goo...
Analyze four common methods and principles: float...
Table of contents Install sakila Index Scan Sort ...
Knowing which for loop or iterator is right for o...
This article mainly introduces the example of imp...
Sometimes in a project, due to some irreversible ...
Nginx's rewrite function supports regular mat...