Ajax calls the restful interface to transmit Json data, restfuljson

Source: Internet
Author: User

Ajax calls the restful interface to transmit Json data, restfuljson

The key to transmitting data in json format through ajax is to specify the contentType. If data is in json format

For the restful interface, change the type to the corresponding post (ADD), delete (delete), put (change), and get (query ).

Var post_data = {"name": "test001", "pass": "xxxx" };$. ajax ({url: "http: // 192.168.10.111: 8080/uc/login", type: 'post', contentType: "application/json; charset = UTF-8", data: JSON. stringify (post_data), success: function (data) {// call successful}, error: function (data, textStatus, errorThrown) {// call failed }});

The above is a full description of the Ajax method used to call restful interfaces to transmit Json-format data. I hope it will be helpful to you, if you want to learn more, please stay tuned to the help House website!

Related Article

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.