指令循环内部的双向绑定

时间:2017-02-04 17:06:11

标签: angularjs angular-directive

我正在尝试为我的客户编写一个简单的表单构建器。他们的想法是创建一个简单的表单,以后可以在不同的场合使用。

为此我正在创建一个指令,通过指令将json表单解析回html。

angular
    .module('myApp')
    .directive('formbuilder', ['$timeout', '$compile', '$parse', function($timeout, $compile, $parse) {
        return {
        restrict:'AE',
        require: 'ngModel',
        scope: {
                form: '=ngModel'
            },
        link: function(scope, element, attrs) {
                $timeout(function() {
                    var bones = scope.form.structure;

                    scope.formId = scope.form.title.replace(/\W+/g, " ").replace(/\s/g,'').toLowerCase();

                    var html = '<form id="{{formId}}" class="row">';

                    angular.forEach(bones, function(bone, key) {
                        if(bone.type == 'text' || bone.type == 'checkbox') {
                            scope[key] = $parse('form.data.'+key)(scope);
                            html += '<input-field class="col s12"><input type="'+bone.type+'" id="'+bone.type+key+'" ng-model="form.data['+key+']" /> <label for="'+bone.type+key+'">'+bone.label+'</label></input-field> ';
                        }
                    })

                    html += '<p>{{form.data.input1}}</p>';

                    html += '</form>';
                    element.append($compile(html)(scope));
           })
        }
     };
}]);

问题是:我循环遍历项目,找到将它们解析回html。这显然不能按预期工作。我可以解析它但是双向绑定丢失了......

有什么想法吗?

json结构是:

$scope.form = {
        title: 'My first form',
        structure: {
            input1: {
                type: 'text',
                label: 'Input label'
            },
            input2: {
                type: 'checkbox',
                label: 'This is a checkbox'
            },
            input3: {
                type: 'checkbox',
                label: 'This is a CHECKED checkbox'
            }
        },
        data: {
            input1: 'Yannick',
            input2: false,
            input3: true
        }
    }

1 个答案:

答案 0 :(得分:1)

我会避免使用实例化ngModelController的ng-model属性。而是使用一次性绑定:

 <formbuilder form="::form"></formbuilder>

在指令中,将isolate范围与单向(<)绑定一起使用:

.directive('formbuilder', ['$timeout', '$compile', '$parse', function($timeout, $compile, $parse) {
    return {
    restrict:'AE',
    /*
    require: 'ngModel',
    scope: {
            form: '=ngModel'
        },
    */
    scope: { form: "<" },

这会将form对象引用绑定到隔离范围。指令输入对内容的更改将与父作用域对象共享。无需对对象引用进行双向绑定。

同样由于显而易见的原因,不要使用括号表示法来代替属性访问者,而是使用点符号:

  //html += '<input ng-model="form.data['+key+']"' 

  //USE dot notation
    html += '<input ng-model="form.data.'+key+'"'

DEMO on PLNKR.