axios.js:1200 Uncaught (in promise) Error: Request failed with status code 404
时间: 2024-01-04 09:04:05 浏览: 213
axios.js
This error message indicates that the request made by Axios (a popular JavaScript library used for making HTTP requests) failed with a status code of 404.
A 404 error indicates that the requested resource (such as a webpage, image, or file) was not found on the server. This could be due to a variety of reasons, such as a typo in the URL or the resource being removed or relocated on the server.
To resolve this error, you may need to check the URL being used in the Axios request and make sure it is correct. You may also want to check if the requested resource still exists on the server.
阅读全文