我正在尝试围绕此处概述的网格元素编写一个小dsl:http://foundation.zurb.com/docs/grid.php
基本上我想做的是
<row>
<column two mobile-one>{{myText}}</col>
<column four centered mobile-three><input type="text" ng-model="myText"></input></col>
</row>
转换为:
<div class="row">
<div class="columns two mobile-one">{{myText}}</div>
<div class= "columns four centered mobile-three"><input type="text" ng-model="myText"></input></div>
</div>
理想情况下,我希望写一些可以采用任意嵌套的东西:row - &gt; col - &gt;行 - &gt; col - &gt;行.....
我无法正确地迈出第一步 - 嵌套元素因为我无法弄清楚如何在不严重影响编译过程的情况下将子元素转换为另一个模板。
var app = angular.module('lapis', []); app.directive('row', function(){ return { restrict: 'E', compile: function(tElement, attrs) { var content = tElement.children(); tElement.replaceWith( $('', {class: 'row',}).append(content)); } } });
只是没有做任何事情。此处显示失败的尝试 - http://jsfiddle.net/ZVuRQ/
请帮忙!
答案 0 :(得分:7)
我希望不要使用ng-transclude,因为我发现它增加了一个额外的范围。
这是一个不使用ng-transclude的指令:
app.directive('row', function() {
return {
restrict: 'E',
compile: function(tElement, attrs) {
var content = angular.element('<div class="row"></div>')
content.append(tElement.children());
tElement.replaceWith(content);
}
}
});
您可能希望使用tElement.contents()而不是tElement.children()。
答案 1 :(得分:1)
您的示例中根本不需要jquery(但是您需要将它包含在您的页面/ jsFiddle中):
var app = angular.module('lapis', []);
app.directive('row', function(){
return {
restrict: 'E',
template: '<div class="row" ng-transclude></div>',
transclude: true,
replace: true
};
});