角度2形式 – 在子组件级别分配ngControl

前端之家收集整理的这篇文章主要介绍了角度2形式 – 在子组件级别分配ngControl前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在角度2表格中,
尝试通过ngSubmit获取数据.
我可以在我的表单组件中分配ngModel和ngControl属性,但是在MyInput子组件中,我不能在没有“不提供错误”的情况下分配ngControl.
Plunker这里 http://plnkr.co/edit/LauhEz6vMaEmIg0hceoj?p=preview
directives: [CORE_DIRECTIVES,FORM_DIRECTIVES,MyInput],template: ` <div>
                <form #hf="ngForm" (ngSubmit)="onSubmit(hf.value)">
                    <div>
                      In Form: <input type='text' [ngControl]="inform" [(ngModel)]="theValue" [required]="req" #spy >
                      <br>Classes: {{spy.className}}
                      <br>
                      <br>In Component: <my-input [props]='prop'></my-input>
                      <br>In Component: <my-input [props]='prop2'></my-input>
                    </div>
                    <button type="submit" [hidden] = "!editing">Save</button>
                    <button type="button" (click)="cancelClick()" [hidden] = "!editing">Cancel</button>
                    <button type="button" (click)="setEdit(true)" [hidden] = "editing">Edit</button>
                </form>
                Form Values {{data}}
           </div>
            `

子组件模板:

@Component({
selector: 'my-input',directives: [FORM_DIRECTIVES],template: ` 
            <input type='text'
              [(ngModel)]="props.Value"

如果我添加这个错误

[ngControl]="props.id"

有什么需要从表单传递给子组件吗?

在ngControl绑定/执行时,prop不可用的问题…如果您在组件中提供了一个默认控件,然后从ngOnChange中的道具中执行该操作,该操作将在道具真正可用的时间.
原文链接:https://www.f2er.com/angularjs/142441.html

猜你在找的Angularjs相关文章