2017-09-19 90 views
1

我正在學習ionic2。我想在我的應用程序中使用評級星。我從這個鏈接rating star ionic2提到。但是當我添加標籤output時,我遇到了鏈接問題。 任何人都可以幫助我嗎?Ionic2評級欄問題

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> 

回答

1

您需要導入Ionic2RatingModulemodule.ts

import { Ionic2RatingModule } from 'ionic2-rating'; 

@NgModule({ 
    declarations: [ 

    ], 
    imports: [ 
     Ionic2RatingModule 
    ], 
    entryComponents: [ 

    ] 
}) 
+0

是的,我已經導入模塊內。那麼我也得到這個問題 – NandhiniB

+0

您還需要添加指令@Component('build/pages/search/search.html', 提供者:[EmployeeService,UtilityService], changeDetection:ChangeDetectionStrategy.OnPush , 指令:[評級] }) – Sajeetharan

+0

https://forum.ionicframework.com/t/star-ratings-in-ionic-2/58326/9 – Sajeetharan