最新的Web開發教程
 

AngularJS包括


隨著AngularJS,您可以包括從外部文件HTML。


AngularJS包括

隨著AngularJS,您可以用NG-include指令包括HTML內容:

<body ng-app="">

<div ng-include="'myFile.htm'"></div>

</body>
試一試»

包括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>
試一試»
注意 確保在目標服務器允許跨域的文件訪問。