使用AngularJS,你可以在HTML中包含其它的HTML文件。
在HTML中包含其它HTML文件?
當前的HTML文檔還不支持該功能。不過W3C建議在后續的HTML版本中增加HTML imports功能,以支持在HTML中包含其它的HTML文件。
<link rel="import" href="/path/navigation.html">
在服務端包含文件
大部分的web服務器都支持服務端包含文件(Server Side Includes)。通過使用SSI,你可以在頁面被發送到客戶端瀏覽器之前將HTML文件包含到一段HTML文檔中。例如下面的這行PHP代碼:
<?php require("navigation.php"); ?>
在客戶端包含文件
通過JavaScript,我們可以有許多的方法將HTML文件加入到HTML文檔中。
最通用的做法莫過於使用Ajax,即通過異步http請求從服務端獲取數據,然后動態將內容以innerHTML的形式輸出到HTML元素中。
在AngularJS中包含文件
在AngularJS中,你可以使用ng-include指令將HTML文件加入到HTML文檔中:
<body> <div class="container"> <div ng-include="'myUsers_List.htm'"></div> <div ng-include="'myUsers_Form.htm'"></div> </div> </body>
下面是完成上述頁面的三個步驟。
第一步:創建myUsers_List.htm文件
<h3>Users</h3> <table class="table table-striped"> <thead><tr> <th>Edit</th> <th>First Name</th> <th>Last Name</th> </tr></thead> <tbody><tr ng-repeat="user in users"> <td> <button class="btn" ng-click="editUser(user.id)"> <span class="glyphicon glyphicon-pencil"></span> Edit </button> </td> <td>{{ user.fName }}</td> <td>{{ user.lName }}</td> </tr></tbody> </table>
第二步:創建myUsers_Form.htm文件
<button class="btn btn-success" ng-click="editUser('new')"> <span class="glyphicon glyphicon-user"></span> Create New User </button> <hr> <h3 ng-show="edit">Create New User:</h3> <h3 ng-hide="edit">Edit User:</h3> <form class="form-horizontal"> <div class="form-group"> <label class="col-sm-2 control-label">First Name:</label> <div class="col-sm-10"> <input type="text" ng-model="fName" ng-disabled="!edit" placeholder="First Name"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">Last Name:</label> <div class="col-sm-10"> <input type="text" ng-model="lName" ng-disabled="!edit" placeholder="Last Name"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">Password:</label> <div class="col-sm-10"> <input type="password" ng-model="passw1" placeholder="Password"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">Repeat:</label> <div class="col-sm-10"> <input type="password" ng-model="passw2" placeholder="Repeat Password"> </div> </div> </form> <hr> <button class="btn btn-success" ng-disabled="error || incomplete"> <span class="glyphicon glyphicon-save"></span> Save Changes </button>
第三步:創建主頁面文件
<!DOCTYPE html> <html ng-app=""> <link rel="stylesheet" href = "http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script> <body ng-controller="userCtrl"> <div class="container"> <div ng-include="'myUsers_List.htm'"></div> <div ng-include="'myUsers_Form.htm'"></div> </div> <script src= "myUsers.js"></script> </body> </html>