This time I will bring you node.jsHow to implement network requests through axios, node.js implements network requests through axiosWhat are the precautions, the following is a practical case, Let’s take a look.
1. Use Npm to download axios npm install --save axios
var update_url = axios.create({ baseURL:'debug url' }); update_url.get('/debug url').then(function (response){ //response 就是请求url 返回的内容 }
When requesting files using the above method , the default format of body is not form-data. Therefore, when the data format we need to request is form-data, we need to use the following library request
npm install --save request
2. request request url, you can use get and post methods.
request.post({url:'http://192.168.1.159/backup/client/interface1s.php?func=getMusicPath',formData:{musicname:task.name}},function optionalCallback(err,httpResponse,body){ //body为url反馈回来的数据, }
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to use CORS of the Koa2 framework to complete cross-domain ajax requests
http in Vue2.0 Request and loading display
The above is the detailed content of How node.js implements network requests through axios. For more information, please follow other related articles on the PHP Chinese website!