Angular2 - 自定义指令内部形成错误行为

时间:2016-09-05 02:29:59

标签: angular angular2-directives angular2-forms angular2-components

当我们在角色表单中使用带有<input ...>标记的自定义指令时,我遇到了问题。

如果您在表单中声明输入,则编辑输入字段将改变表单的属性,如pristine,touch,valid等,如预期的那样。

如果您在表单中声明自定义指令,请说<ac2-string-input ...></ac2-string-input>并且它的模板包含输入,那么如果您编辑此输入的字段,则将不会改变形式的属性。

为什么?那是一个错误吗?有没有解决方法呢?

下面是一个例子:

我们可以在 app / form.component.ts

中有一个表单组件
import { Component } from '@angular/core'

import { InputComponent } from './input.component'

@Component({
    selector: 'ac2-form',
    templateUrl: '<build path>/templates/form/form.html',
    directives: [InputComponent]
})

export class FormComponent {


    item: Object = {
       attr1: 'blah',
       attr2: 'another blah'
    }

    constructor(){}

    submit(){ console.log(this.item) }
}

使用模板 templates / form / form.html

<form #f="ngForm" (ngSubmit)="submit()">
  <input type="text" name="attr1" [(ngModel)]="item.attr1"/>
  <ac2-string-input [obj]="item"></ac2-string-input>

  <button type="submit">Submit</button>
</form>

<div>
    Pristine? {{f.form.pristine}}
</div>

ac2-string-input 指令在 app / form / input.component.ts

中定义
import { Component, Input } from '@angular/core'

@Component({
    selector: 'ac2-string-input',
    templateUrl: '<build path>/templates/form/input.html'
})

export class InputComponent {
    @Input() obj: Object;

    constructor(){}
}

使用模板 templates / form / input.html

<input type="text" name="attr2" [(ngModel)]="obj.attr2"/>

如果我们加载表单,则会有两个文本字段,表单将为&#34; Pristine&#34;

Form

如果我们编辑&#34; attr2&#34;字段,表格将继续保持原始状态,就好像字段没有绑定表格一样!

field edited, form pristine

如果我们编辑&#34; attr1&#34;如预期的那样,形式不会是原始的。

2 个答案:

答案 0 :(得分:3)

我在Angular 2的github中打开了issue

事实证明,如果我们希望将组件识别为表单控件,我们需要实现ControlValueAccessor接口并将ngModel放在顶层。

THIS Plunkr展示了如何做到这一点。

积分转到kara谁为我解决了这个问题。

答案 1 :(得分:0)

内部input可能无法识别为表单的一部分,因为ac2-string-input不是标准的HTML输入。

您可以通过输出表单的控件或值并查找attr2属性来验证这一点。如果它不存在,Angular甚至不知道它,那么更改该输入对表单的pristine状态没有影响。

为了简化集成,请考虑使用属性指令而不是组件。这会改变:

<ac2-string-input [obj]="item"></ac2-string-input>

<input type="text" [ac2StringInput]="item"/>

该指令将类似于:

@Directive({
    selector: '[ac2StringInput]',
    host: {
        // onKeyup gets executed whenever the input receives input
        '(keyup)':'onKeyup($event)'
    }
})
export class InputComponent {
    constructor() {}

    /**
     * ac2StringInput to the outside refers to obj within this directive
     */
    @Input('ac2StringInput') obj:Object;

    /**Handle keyup*/
    onKeyup($event){}
}

如果您希望更多地了解其外部的内容,您甚至可以将整个form作为输入传递给指令。