使用 uppercase 过滤器的表格 | AngularJS 实例

使用 uppercase 过滤器的表格,看下这个实例,代码:

<!DOCTYPE html>
<html>
<head>
<title>AngularJS 实例 | Web176教程网web176.com</title>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script>
<style>
table, th , td  {
  border: 1px solid grey;
  border-collapse: collapse;
  padding: 5px;
}
table tr:nth-child(odd)	{
  background-color: #f1f1f1;
}
table tr:nth-child(even) {
  background-color: #ffffff;
}
</style>
</head>
<body>

<div ng-app="myApp" ng-controller="customersCtrl"> 

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country | uppercase }}</td>
  </tr>
</table>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
    $http.get("/demo/argular/Customers_JSON.php")
    .then(function (result) {
        $scope.names = result.data.records;
    });
});
</script>

</body>
</html>

预览看看。

作者:terry,如若转载,请注明出处:https://www.web176.com/angularjsex/6607.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2022年8月16日 下午4:37
下一篇 2022年8月24日 上午11:46

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注