17

angularjsでpost['Content-Type']を変更したいので使用します

  app.config(function($locationProvider,$httpProvider) {
$locationProvider.html5Mode(false);
$httpProvider.defaults.useXDomain = true;
delete $httpProvider.defaults.headers.common['X-Requested-With'];
$httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;        charset=UTF-8';
 });

そしてイベントは

     $http.post("http://172.22.71.107:8888/ajax/login",{admin_name:user.u_name,admin_password:user.cert})
        .success(function(arg_result){

            console.log(arg_result);


        });
};

しかし結果は

Parametersapplication/x-www-form-urlencoded
{"admin_name":"dd"} 

私が欲しいのは

Parametersapplication/x-www-form-urlencoded
 admin_name dd

それで私は何をすべきですか?

4

4 に答える 4

28

次のようにしてみてください:

var serializedData = $.param({admin_name:user.u_name,admin_password:user.cert});

$http({
    method: 'POST',
    url: 'http://172.22.71.107:8888/ajax/login',
    data: serializedData,
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded'
    }}).then(function(result) {
           console.log(result);
       }, function(error) {
           console.log(error);
       });
于 2013-07-12T08:23:50.377 に答える
6
angular.module('myApp', [])
        .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';
        })
于 2015-02-20T11:56:26.397 に答える
2

OPは使用してContent-Type : application/x-www-form-urlencodedいるため、$httpParamSerializerJQLikeを使用して投稿データをJSONから文字列に変更する必要があります

注: dataプロパティはありませんが、paramsプロパティです

$http({
            method: 'POST',
            url: 'whatever URL',
            params:  credentials,
            paramSerializer: '$httpParamSerializerJQLike',
            headers: {'Content-Type': 'application/x-www-form-urlencoded'}
        })

さらに、シリアライザーを挿入し、データプロパティで明示的に使用することができます

.controller(function($http, $httpParamSerializerJQLike) {
....
$http({
        url: myUrl,
        method: 'POST',
        data: $httpParamSerializerJQLike(myData),
        headers: {
          'Content-Type': 'application/x-www-form-urlencoded'
        }
     });
于 2016-08-04T10:32:21.120 に答える