获取json字符串
程序员文章站
2022-03-08 11:54:32
...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="lib/js/angular/angular.min.js" ></script>
<script>
var app = angular.module("linrenjiang",[]);
app.controller("conl",["$scope","$http","$filter",function($scope,$http,$filter){
$scope.datas;
$scope.getData = function(){
$http.get("stars.json").then(function(resp){
$scope.datas=resp.data;
});
}
}]);
</script>
<style>
input{
display: block;
margin : 2px;
}
</style>
</head>
<body ng-app="linrenjiang" ng-controller="conl">
<input type="button" value="获取数据" ng-click="getData()" />
<table border="1px">
<tr>
<th>姓名</th>
<th>头像</th>
<th>年龄</th>
<th>性别</th>
<th>专辑</th>
</tr>
<tr ng-repeat="data in datas">
<td>{{data.name}}</td>
<td>
<img width="100px" src={{data.photo}} alt="图片无法加载显示" />
</td>
<td>{{data.age}}</td>
<td>{{data.sex}}</td>
<td>{{data.ablum}}</td>
</tr>
</table>
</body>
</html>
上一篇: 获取随机字符串
下一篇: python-day4 字符串的操作
推荐阅读
-
解决feignClient调用时获取返回对象类型匹配的问题
-
jQuery截取指定长度字符串的实现原理及代码_jquery
-
Javascript获取CSS伪元素属性的实现代码_javascript技巧
-
PHP应用JSON技巧讲解_PHP
-
1116 习题8-2 字符串排序输出
-
编写一个函数reverse_string(char * string)(递归实现)实现:将参数字符串中的字符反向排列。 要求:不能使用C函数库中的字符串操作函数
-
vue获取input输入值的问题
-
Vue怎么获取当前选中的select下拉框的value值
-
Vue实现Element UI的下拉框默认选中,值来自父组件或异步获取
-
php中的字符串和正则表达式