离子4刷新器不起作用?

时间:2018-08-08 09:26:03

标签: pull-to-refresh ionic4

我正在尝试实施拉动以刷新我的应用程序的功能,但是ion-refresher似乎不起作用。可能是错误吗?

这是我的HTML组件:

<ion-content>
        <ion-refresher slot="fixed" (ionRefresh)="logSomethingToConsole()">
                <ion-refresher-content pullingIcon="arrow-dropdown" pullingText="Pull to refresh" refreshingSpinner="circles" refreshingText="Refreshing...">
                </ion-refresher-content>
        </ion-refresher>

      <ion-row justify-content-center text-center id="temp-text">
          <h1> Some Text </h1>
      </ion-row>

</ion-content>

1 个答案:

答案 0 :(得分:1)

未调用doRefresh(event)函数。

您必须在离子刷新器组件中设置属性[disabled] =“ false”。

请参阅:https://github.com/ionic-team/ionic/issues/14992