我正在尝试获取返回值“ dataJson”,但是我却不确定。
有人会告诉我我该怎么做吗?
非常感谢您!
$scope.sendRequest = function (port) {
var dataJson;
$http({
method: "GET",
url: CCHK3AnalysisWebserviceUrl + `/Get` + port + `ForPC?PageSize=10000&PageCount=1&ConditionJson=` + CondtJson,
}).then(function (data) {
dataJson = $scope.parseData(data.data);
}, function (err) {
console.log(err)
})
return dataJson
}