随着AngularJS,您可以包括从外部文件HTML。
AngularJS包括
随着AngularJS,您可以用NG-include指令包括HTML内容:
包括AngularJS代码
该HTML文件包含你的NG-include指令,也可以包含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="'http://www.refsnesdata.no/angular_include.asp'"></div>
<script>
var app = angular.module('myApp', [])
app.config(function($sceDelegateProvider)
{
$sceDelegateProvider.resourceUrlWhitelist([
'http://www.refsnesdata.no/**'
]);
});
</script>
</body>
试一试» 确保在目标服务器允许跨域的文件访问。 |