Created
August 11, 2012 23:56
-
-
Save s9tpepper/3328010 to your computer and use it in GitHub Desktop.
Revisions
-
s9tpepper created this gist
Aug 11, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ // The .config() part is the relevant part, 'SomeModule' is arbitrary name, // but this config() call goes on your main ng-app="YourAppModule" // The PHP $_POST expects data w/ a form content type, not a JSON payload angular.module("YourAppModule", ["SomeModule"]).config(function($httpProvider) { $httpProvider.defaults.headers.put['Content-Type'] = 'application/x-www-form-urlencoded'; $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; });