我在服务中创建了一个 http 方法。但是当我调用它时,它返回 null 我不知道为什么。这是方法:
objectResponse.httpCall = function ( sMethodName, postData){
var rData = null;
$http({
dataType: "json",
type: "POST",
method: 'POST',
url: sMethodName,
data: (typeof postData !== "string") ? JSON.stringify(postData) : postData,
headers: {'Content-Type': 'application/json'}
})
.success(function(data, status, headers, config) {
rData = data;
})
.error(function(data, status, headers, config) {
rData = null;
});
return rData;
}
谢谢你。