Ionic2 评级栏问题

Ionic2 rating bar issue

我正在学习 ionic2。我想在我的应用程序中使用评级星级。我从这个 link . But I'm facing an issue in link this when I add the tag output 引用。 任何人都可以帮助我吗?

rating.html

<ion-content class="has-header">
<rating [(ngModel)]="rate" 
    readOnly="false"
    max="5"
    emptyStarIconName="star-outline" 
    halfStarIconName="star-half" 
    starIconName="star" 
    nullable="false"
    (ngModelChange)="onModelChange($event)"></rating>

您需要在 module.ts

中导入 Ionic2RatingModule
import { Ionic2RatingModule } from 'ionic2-rating';

@NgModule({
    declarations: [

    ],
    imports: [
        Ionic2RatingModule
    ],
    entryComponents: [

    ]
})