2
아래 코드에서 입력 필드의 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.test
및 New.test
.... 아무것도 시도하지!
각도 2 인 경우 [(ngModel)] 및 angular1.5를 사용하고 $ ctrl.test – varit05
각도 1.5를 사용하십시오. $ ctrl 시도했지만 작동하지 않습니다 ... 일부 코드를 추가했습니다 ... – Mika
이 바이올린보십시오 : https://plnkr.co/edit/eeUULQ1YrLhsQvSuA0fD?p=preview – varit05