无法从angularjs中的$ http post方法获取json数据

时间:2015-10-12 14:48:01

标签: javascript json angularjs http post

我无法从angularjs中的$ http post方法获取json数据 我尝试在控制器文件中使用代码

var sectionTypeVM = new Object();
            sectionTypeVM.sessionid = 'Session';
            sectionTypeVM.query = 'where LOB group by Report_Source_Type,Report_Object_Type';
           // alert(JSON.stringify(sectionTypeVM));
            $http({
                method: 'post',
                url: 'http://testserver/search',
                dataType: 'json',
                data: JSON.stringify(sectionTypeVM),
                headers: { 'Content-Type': 'application/json' }
            }).success(function(data, status, headers, config) {
                alert('success');
                alert(data);
                })
            .error(function(data, status, headers, config) {
                alert('error');
                  alert(data+ status + headers + config );
            });

调用My $ http请求返回错误函数。 我正在使用AngularJS v1.2.16

由于 Gajanan

0 个答案:

没有答案