在我的Angular应用程序中,我试图了解将页面拆分为组件的正确方法。
更改前的页面类似于:
<div id='settings'>
<p class='controlGroup' ng-controller="FirstCtrl">
<label class='control-label'>First Control</label>
<div class="control">
<!-- some inputs -->
</div>
</p>
<p class='controlGroup' ng-controller="SecondCtrl">
<label class='control-label'>Second Control</label>
<div class="control">
<!-- some inputs -->
</div>
</p>
</p>
<button id='saveBtn' class='saveButton' ng-click='saveSettings()'>Save Changes</button>
</div>
虽然控制逻辑被分成两个不同的控制器,但我也希望将它们分开,因此很容易重复使用它们或将它们移动到不同的位置。
我看到很多选项:ng-include
,script
标记等。
这样做的正确方法是什么?
答案 0 :(得分:13)
使用ng-include,您可以使用不同的模板,只需使用它将它们注入DOM的某些部分,当您想根据不同的情况加载不同的视图时,例如单击导航按钮或变量左右,请注意ng-include还会编译模板,以便您可以在模板中使用控制器和其他角度特征和指令,这里是angularjs docs的一个例子:
这是你的主要HTML:
<!doctype html>
<html ng-app>
<head>
<script src="http://code.angularjs.org/1.0.6/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-controller="Ctrl">
<select ng-model="template" ng-options="t.name for t in templates">
<option value="">(blank)</option>
</select>
url of the template: <tt>{{template.url}}</tt>
<hr/>
<div ng-include src="template.url"></div>
</div>
</body>
</html>
这是js:
function Ctrl($scope) {
$scope.templates =
[ { name: 'template1.html', url: 'template1.html'}
, { name: 'template2.html', url: 'template2.html'} ];
$scope.template = $scope.templates[0];
}
答案 1 :(得分:0)
指令是以角度创建可重用组件的自然选择:http://docs.angularjs.org/guide/directive