AngularJS $http POST-Transfer parameter

Source: Internet
Author: User
Tags http post

Method Source: http://victorblog.com/2012/12/20/make-angularjs-http-service-behave-like-jquery-ajax/

$httpServices (and $http.post() so on) are not equivalent to jquery ( jQuery.post() etc.),

The difference is how jquery and Angularjs serialize and transfer data. Fundamentally, the problem is that the server language selection does not understand the ANGULARJS transmission locally ...

By default, jquery transmits data using Content-Type: x-www-form-urlencoded and the familiar foo=bar&baz=moe serialization.

Angularjs However, with the sending of data Content-Type: application/json   and { "foo": "bar", "baz": "moe" } JSON serialization, unfortunately some Web server languages ( especially PHP) cannot be locally de-serialized.

Workaround:

Locate and change the following settings in the angular source code:

Front-End Code:

PHP Code:

AngularJS $http POST-Transfer parameter

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.