从HTTP响应中访问值

时间:2016-06-01 10:50:53

标签: javascript angularjs

我使用GET方法获得回复。我需要访问此响应中的一些值才能在我的项目中工作。如何访问下图所示的值?

enter image description here

我试过

}).then(function (response) {

                var MLP_result

                //console.log(response);
                $scope.response = response;

                $scope.MLP_result = response.data.MLPResult;
                console.log("MLP"+ MLP_result);


            });

但是我收到了错误。如何将此值放入范围

0 个答案:

没有答案