Vue http request (for Vue-resource)

Source: Internet
Author: User

//what to do when initializing a page//What to do when you click on it//events such as mouse, keyboard, bubbling, default behavior, and so on//The front-end calling interface is showing the data on demand
//created and mounted inside can do data processing, the only difference is that the created Dom is not completed mount, mounted has completed the mount. Created () { This. $htttp. Get (Url,getdata). Then (function(RES) {},function(RES) {})//equivalent to the resolve and reject inside the ES6. This. $htttp. Post (Url,postdata,{emulatejson:true}). Then (function(RES) {},function(RES) {})//equivalent to the resolve and reject inside the ES6.},mounted () { This. $htttp. Get (Url,getdata). Then (function(RES) {},function(RES) {})//equivalent to the resolve and reject inside the ES6. This. $htttp. Post (Url,postdata,{emulatejson:true}). Then (function(RES) {},function(RES) {})//equivalent to the resolve and reject inside the ES6.}

For common HTTP request methods

    • Get (URL, [data], [options]);

    • Post (URL, [data], [options]);

    • Put (URL, [data], [options]);

    • Delete (URL, [data], [options]);

    • Jsonp (URL, [data], [options]);

    • All accept three parameters:

      • URL (string), request address. Can be overridden by the URL attribute in the Options object.

      • Data (optional, string, or object), to be sent, can be overridden by the database property in the Options object.

      • Options

Vue http request (for Vue-resource)

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.