如何获得AngularJs的返回值?

时间:2018-09-12 13:03:29

标签: angularjs promise

我正在尝试获取返回值“ 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
         }

0 个答案:

没有答案