AngularJS 包含
在 AngularJS 中,你可以在 HTML 中包含外部 HTML 文件。
AngularJS 包含
使用 AngularJS, 你可以使用 ng-include 指令来包含 HTML 内容:
包含 AngularJS 代码
ng-include 指令除了可以包含 HTML 文件外,还可以包含 AngularJS 代码:
myTable.htm:
<table>
<tr ng-repeat="x in
names">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
在网页中包含文件 "myTable.htm" ,所有 AngularJS 代码都将被执行,甚至包括包含文件中的代码:
实例
<body>
<div ng-app="myApp" ng-controller="customersCtrl">
<div ng-include="'myTable.htm'"></div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("customers.php").then(function (response) {
$scope.names = response.data.records;
});
});
</script>
亲自试一试 »
跨域包含
默认情况下, ng-include 指令不允许包含其他域名的文件。
如果你需要包含其他域名的文件,你需要设置域名访问白名单:
实例
<body ng-app="myApp">
<div ng-include="'https://tryit.www.w3ccoo.com/angular_include.php'"></div>
<script>
var app = angular.module('myApp', [])
app.config(function($sceDelegateProvider)
{
$sceDelegateProvider.resourceUrlWhitelist([
'https://tryit.www.w3ccoo.com/**'
]);
});
</script>
</body>
亲自试一试 »
确保目标上的服务器允许跨域文件访问。