0

我在子组件中的 ngModel 值有一些奇怪的行为。html代码:

<input type="text" pattern="^[a-zA-Z]$"
                           class="form-control" required="true"
                           id="myId" 
                           [(ngModel)]="kName">

kName 是一个输入字段(@kName:string),将从父组件填充。我可以看到“this.kName”每次都从父组件获取新值。但是当我在这个字段上设置一些操作后:

this.kName = undefined;

然后我想再次从父级填充 kName,我的 kName-current 值不会出现在 html-output 上,但我可以看到:this.kName 当我尝试这样做时:

<input type="text" pattern="^[a-zA-Z]$"
                           class="form-control" required="true"
                           id="myId" 
                           [(ngModel)]="{{this.kName}}">

我得到init了 html-pattern 的错误,因为 kName 是未定义的。如何刷新我的 ngModel 值?也许我还有其他问题...

4

1 回答 1

1

好像你在任何地方都有另一个问题..

您的控制台中是否有任何错误消息?

看看这个 plunker,按预期工作:https ://plnkr.co/edit/2VUOimDCMvPSNHD1mX69?p=preview

您可以“清除”它并从父组件重写它..

import {Component, NgModule, Input} from '@angular/core'
import {FormsModule} from '@angular/forms'
import {BrowserModule} from '@angular/platform-browser'

@Component({
  selector: 'my-child',
  template: `
    <input [(ngModel)]="kName" />
    <button (click)="clearFunction()">clear</button>
    <br />
    {{kName}}
  `,
})
export class Child {
  @Input() kName: string;

  constructor() { }

  clearFunction() {
    this.kName = undefined;
  }
}

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2 (click)="changeSomething()">Hello {{name}}</h2>
      <my-child [kName]="myKname"></my-child>
    </div>
  `,
})
export class App {
  name:string;
  myKname: string;

  constructor() {
    this.name = 'Angular2'
  }

  changeSomething() {
    this.myKname = Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
  }
}

@NgModule({
  imports: [ BrowserModule, FormsModule ],
  declarations: [ App, Child ],
  bootstrap: [ App ]
})
export class AppModule {}
于 2016-11-02T09:41:42.387 回答