gpt4 book ai didi

angularjs - 如何使用 $http.get 显示数据

转载 作者:行者123 更新时间:2023-12-04 17:56:26 24 4
gpt4 key购买 nike

在我的应用程序中,我尝试使用 $http.get 从数据库中获取 json 数组,执行时我无法在我的 View 中看到获取的数据。但是在我的浏览器控制台中,我能够看到显示 json 数组 data:array[5] 数量的响应,扩展每个数组能够看到数组中输入的值。那么如何在我的 View 页面中显示获取的数据。

 var brandList=[];
var successCallBack=function(response){
$log.info(response);
brandList=response;
};
var errorCallBack=function(response)
{
$log.info(response);
};
$http({
method:'get',
url:'http://local-serve:8081/route/listMake'})
.then(successCallBack,errorCallBack);
return brandList;
}]);

最佳答案

整个响应对象中的响应。你需要从中提取值(value)。尝试运行这个 URL在浏览器中。现在使用相同的 URL,这是一个示例:

在 JS 中,

$http.get('https://jsonplaceholder.typicode.com/photos/1')
.then(function(response){
$scope.title = response.data.title;
})

在 HTML 中,

<p>
The title is <i>{{title}}</i>
</p>

关于angularjs - 如何使用 $http.get 显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40174271/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com