test.directive('testMe', ['$compile', function($compile) {
return {
restrict: 'EA',
transcluded: true,
link: function(scope, element, attrs) {
scope.state = 'compiled';
//a = $(element.html()); //this gives: Error: Syntax error, unrecognized expression: Something I actually want to save {{state}}
a = $('<div>' + element.html() + '</div>');
var el = $compile(a)(scope);
scope.compiled = element.html();
},
}
}]);
出于某种原因,我想将具有给定范围的模板编译为字符串,在询问谷歌叔叔并做了一些实验后,我放弃了。
有人知道怎么做吗?也许我的做法完全错了?
我想注意,因此我需要将模板编译成字符串,保存在变量中。
修改
更具体地说,这就是我需要的东西:
var template = "<p>{{variable}}</p>";
$scope.variable = "test";
var compiled = //magic goes here
alert(compiled); // gives <p>test</p>
答案 0 :(得分:2)
我最近偶然发现了一个类似的问题,经过几个小时我能够在这篇文章的帮助下解决它: Blog post from Ben Lesh
我想创建一个ComboBox来为另一个实体选择一个Image以保存在关系数据库中。当然我的实体也有其他关系,所以我在JSON-File
中描述了它们//image
{ id: 4, path: 'http://www.example.com/myimage.png', name: 'Picture of my cat' }
//entity
{ id: 7, foo: 'bar', imageId: 4, anotherEntityId: 12}
//anotherEntity
{ id: 12, name: 'My Entity'}
我现在想要创建一个Formular来输入新实体和外键我想要一个组合框 然后我声明了另一个JSON-Object,包含实体的每一列以及我希望它们如何呈现
{cols:
[
{
name: 'imageId',
displayName: 'Image',
type: Image,
template: '<img src="{{e.path}}" />{{e.name}}'
},
...
]}
为此,我创建了一个名为nComboBoxRenderer
的新指令<ng-combo-box-renderer data="image", template="column.template"></ng-combo-box-renderer>
-
directives.directive('ngComboBoxRenderer', ['$compile', function($compile) {
return {
restrict: "E",
scope: {
e: '=data', // in my case this is the image
template: '=template' // the template
},
link: function($scope, element, attributes) {
var tl = angular.element("<span>" + $scope.template + "</span>");
compiled = $compile(tl);
element.append(tl);
compiled($scope);
}
}
}]);
虽然这与用过的用例不完全相同,但所涉及的过程看起来是一样的。