我正在尝试基于模板动态生成表单,而模板又具有一些动态属性。
我越来越近,但无法检索容器元素。
这是指令:
myApp.directive('myDirective', function () {
return {
template: "<div> <label>{{Field.Name}} <div id='{{Field.Name}}_Container'></div> </label></div>",
replace: true,
restrict: 'AE',
scope: {
Field: "=fieldInfo",
FieldData:"="
},
link: function (scope, element, attr) {
var input = "<input type='" + scope.Field.Type + "' data-ng-model='FieldData[" + scope.Field.Name + "]' />";
var inputEl = angular.element(input);
var container = angular.element("#" + scope.Field.Name + "_Container"); // Doesn't work
container.append(inputEl);
}
}
});
控制器:
function MyCtrl($scope) {
$scope.Fields = [
{ Name: "field1", Type: "text", Data:null },
{ Name: "field2", Type: "number", Data:null }
];
$scope.FieldData = {}; //{fieldname: fielddata}
}
HTML:
<div ng-controller="MyCtrl">
<my-directive data-ng-repeat="field in Fields" data-field-info="field">
</my-directive>
</div>
基本上我有字段描述符对象,需要根据它生成表单。 我不太确定如何引用容器对象 - 在链接之前是否必须编译模板?
另外,我实际上正在使用templateUrl,如果这很重要。
这是一个fiddle。
答案 0 :(得分:5)
您需要使用$compile编译到html模板。此外,您可以使用element
功能中的link
来访问模板中的外部div
。
var myApp = angular.module('myApp', []);
myApp.directive('myDirective', function ($compile) {
return {
template: "<div> <label>{{Field.Name}} <div id='{{Field.Name}}_Container'></div> </label></div>",
replace: true,
restrict: 'AE',
scope: {
Field: "=fieldInfo",
FieldData:"="
},
link: function (scope, element, attr) {
var input = "<input type='" + scope.Field.Type + "' data-ng-model='FieldData[" + scope.Field.Name + "]' />";
var html = $compile(input)(scope);
element.find('div').append(html);
}
}
});
请参阅jsfiddle。