我需要根据日期决定模板。我看到一个很好的example。 但在该示例中,模板非常简单,以至于他可以使用字符串。在我的情况下,我想使用PHP来生成模板,所以我用这种方式:
eng.directive('vis', function ($compile) {
var getTemplate = function(ir) {
var k = (ir.visits.last && parseInt(ir.visits.last.done))?'V':'E';
var s = (ir.data.kind == 0)?'H':'V';
return s+k+'T';
}
var linker = function(scope, element, attrs) {
scope.$watch('ir',function(){
if (!scope.ir) return;
element.html(jQuery('#'+getTemplate(scope.ir)).html()).show();
$compile(element.contents())(scope);
})
}
return {
restrict: "E",
rep1ace: true,
link: linker
};});
,模板是:
<div id=HVT style="display:none">
<p>horizontal view template</p>
</div>
<div id=HET style="display:none">
<p>horizontal {{1+5}} Edit template</p>
</div>
<div id=VVT style="display:none">
<p>vertical view template</p>
</div>
<div id=VET style="display:none">
<p>vertical Edit template</p>
</div>
我相信有更聪明的方法。 是否更好地使用templateUrl?有人可以告诉我如何在我的情况下使用它吗?
编辑:有问题。模板没有看到范围
答案 0 :(得分:16)
这也可以在AngularJS中创建动态模板: 在你的指令中使用:
template : '<div ng-include="getTemplateUrl()"></div>'
现在您的控制器可以决定使用哪个模板:
$scope.getTemplateUrl = function() {
return '/template/angular/search';
};
因为您可以访问范围参数,所以您也可以这样做:
$scope.getTemplateUrl = function() {
return '/template/angular/search/' + $scope.query;
};
因此,您的服务器可以为您创建动态模板。
答案 1 :(得分:3)
我找到了解决方案here
在此示例http://jsbin.com/ebuhuv/7/edit
中找到这段代码:
app.directive("pageComponent", function($compile) {
var template_for = function(type) {
return type+"\\.html";
};
return {
restrict: "E",
// transclude: true,
scope: true,
compile: function(element, attrs) {
return function(scope, element, attrs) {
var tmpl = template_for(scope.component.type);
element.html($("#"+tmpl).html()).show();
$compile(element.contents())(scope);
};
}
};});
答案 2 :(得分:2)
使用Angular,您无需使用id
。另外,您可以使用display:none
代替ng-show
:
<div ng-show="HVT">
<p>horizontal view template</p>
</div>
<div ng-show="HET">
<p>horizontal {{1+5}} Edit template</p>
</div>
...
您的$ watch回调(您可以在控制器或指令中定义)可以简单地修改相应的范围属性:
var getTemplate = function (ir) {
var k = (ir.visits.last && parseInt(ir.visits.last.done)) ? 'V' : 'E';
var s = (ir.data.kind == 0) ? 'H' : 'V';
return s + k + 'T';
}
$scope.$watch('ir', function () {
if (!$scope.ir) return;
// hide all, then show the one we want
$scope.HVT = false;
$scope.HET = false;
$scope.VVT = false;
$scope.VET = false;
$scope[getTemplate($scope.ir)] = true;
})
Fiddle。小提琴在控制器中有上面的代码,因为我不知道你可能在哪里使用该指令。小提琴也只是硬编码“VET”,因为我不知道ir
是什么样的。