Ionic 2 and ng-model

10,781

In Angular 2, you should use ngModel in the template, and not ng-model.

Share:
10,781
atardadi
Author by

atardadi

Updated on June 17, 2022

Comments

  • atardadi
    atardadi almost 2 years

    I truly feel as an early adopter because Google couldn't find a way to fix my issue :)

    I'm somehow getting this error:

    Can't bind to 'ng-model' since it isn't a known native property

    I don't see @Component in Ionic, so the page is configured like this:

    import {Page, NavController} from 'ionic-framework/ionic';
    @Page({
      templateUrl: 'app/home/home.html',
      directives: [Select]
    })
    

    and my template is this:

    <ion-input floating-label>
      <ion-label>Search text...</ion-label>
      <input type="text"  [(ng-model)]="searchInput" />
    </ion-input>
    

    I'm using Ionic 2.

    Cheers