Angular 2在赋值后通过另一个占位符更改输入占位符的值

时间:2017-04-17 22:47:17

标签: angular typescript data-binding

我有一个自动完成输入,我想从此输入中获取结果并将其放在另一个输入上。

我试着这样做

  <input placeholder="search for location" autocorrect="off"  autocapitalize="off" spellcheck="off" type="text" class="form-control" #search [formControl]="searchControl"  [(ngModel)]="title">
      </div>

  <div class="form-group">
    <label>Title</label>
    <input class="form-control" type="text" [(ngModel)]="location.title"    value="{{title}}"  name="title" required>
  </div>

使用此代码我只能得到我写的内容,但这不是我想要得到的内容,我希望在从自动填充值中选择一个值后得到最终结果。

想要在标题输入上得到它。

0 个答案:

没有答案