Sending data using Axios requests

Source: Internet
Author: User

Has not been used successfully, today read some blogs, learned to use the Axios plugin

1. The first is the download dependency

2.main.js

Import Axios from ' Axios '
Vue.prototype. $axios = Axios

Axios.defaults.baseURL = ' http://xxx/';
axios.defaults.headers.post[' content-type '] = ' application/x-www-form-urlencoded ';

3, the component references the first type

var params = new Urlsearchparams (); //Note the following attributes must be quoted

Params.append ("nickname", This.changenameval);
Params.append ("Sex", this.sexstatus);
Params.append ("Job", This.changejobval);
Params.append ("Birthday", this.birthday);


this. $axios. Post (
"Index.php/api/user/editpersonalinfo",
Params
). Then (res=>{}). catch ((Err) =>{})

4, the component references the second type

Component

Import qs from "QS";

var params = qs.stringify ({

Nickname:this.changeNameVal,
Sex:this.sexstatus,
Job
Job:this.changeJobVal,
Birthday:this.birthday,


})

this. $axios. Post (
"Index.php/api/user/editpersonalinfo",
Params
). Then (res=>{}). catch ((Err) =>{})

Sending data using Axios requests

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.