是否可以将字符串变量设置为模板的内容?我想根据范围选择两个不同的模板。像这样的东西:
define(['app'], function(app){
app.directive('logstorelist', function(){
var temp="";
return{
scope: true,
restrict: 'A',
link: function(s, e, a){
if(a=="a")
temp = "<a>tempA</a>";
else
temp = "<div>temp</div>";
},
replace: true,
template: temp
}
})
});
这样的事情可能吗?