我一直在尝试定义指令,以便可以在表单中显示不同的“小部件”,具体取决于存储在数据库中的字段类型及其参数。我需要对不同类型的场景做出反应,因此需要指令来处理布局。
在玩一些示例时,我想出了一个 *kinda* 工作的代码:
HTML
<input type="text" ng-model="myModel" style="width: 90%"/>
<div class="zippy" zippy-title="myModel"></div>
指示
myApp.directive('zippy', function(){
return {
restrict: 'C',
// This HTML will replace the zippy directive.
transclude: true,
scope: { title:'=zippyTitle' },
template: '<input type="text" value="{{title}}"style="width: 90%"/>',
// The linking function will add behavior to the template
link: function(scope, element, attrs) {
// Title element
element.bind('blur keyup change', function() {
scope.$apply(read);
});
var input = element.children();
function read() {
scope.title = input.val();
}
}
}
});
这似乎有效(尽管明显比 *proper* angularJS 变量绑定慢),但我认为必须有更好的方法来做到这一点。任何人都可以对此事有所了解吗?