是否可以在一个 html 中检索多个 html 部分?我有下一个情况:
Template: {header} {main} {footer}
/index: header:"Welcome" main:"welcome text" footer:""
/help: header:"Help title" main:"faq tips" footer"Back to home"
使用ng-include我必须从服务器中检索 6 个 html。如果我将在一个 html 中检索多个部分,那么我将仅从服务器检索 2 个 html,一个用于 /index,一个用于 /help。
- 这种情况是真实情况的一个小例子。
- ng-template类型的标记脚本对我不起作用,因为该脚本必须在ng-include之前包含。
谢谢!
2012 年 4 月 7 日更新:
我试图一次更新多个 div,并使用独特的 html 检索。我不喜欢这样:
function IndexCtrl($scope) {
$scope.mainPage = 'partials/index/index.html';
$scope.headerTemplate = 'partials/index/header.html';
$scope.footerTemplate = 'partials/index/footer.html';
}
在模板中使用 ng-includes 后包含这些部分。我认为这不是正确的方法。还有其他方法吗?
谢谢!