形式 - 如何从内联模板访问控制器属性

时间:2016-07-07 10:39:07

标签: angularjs angular-formly

在下面的代码中,如何将输入字段的ng-model属性链接到this.test变量。

class NewComponent {
  constructor() {
    this.test = 'test';
    this.fields = [
        {
          template:
           '\
             <div class="form-group">\
               <input ng-model="test" type="text" class="form-control">\
             </div>\
            '
         }
    ]
  }
}


angular.module('app')
  .component('NewComponent', {
    templateUrl: 'new.html',
    controller: NewComponent,
    controllerAs: 'New'
  });

我尝试了$ctrl.testNew.test ......没有!

1 个答案:

答案 0 :(得分:0)

应该能够做到:

ng-model="model.test"

坚持下去,你知道的越多,你就越爱它...在工作中整天使用它,这是非常惊人的一些先进的东西,你可以在一段时间后做...