问:使用列表中的onloadmore方法,并将loadmoreoffset设置为0。在IOS中,此方法可以成功触发,但在Android中无法触发。您有类似问题的童鞋吗?分享您的经验,但有人说可以...
<list style='width: 750; height: {{colHeight}}; background-color: #f4f4f4;' onloadmore='onloadmore' loadmoreoffset=0>
<refresh onrefresh='refresh' display="{{refreshing ? 'show' : 'hide'}}" style='flex-direction: row; justify-content: center; align-items: center; width: 750; height: 100;'>
< text style ='font-size: 28; '> release and refresh for you at once
<loading-indicator style='width: 70; height: 70; color: #a9a9a9; margin-left: 24;'></loading-indicator>
</refresh>
<cell scope='goods' repeat="{{item in searchResults}}" style='width: 750; height: 515;'>
<two-goods goods="{{ item }}"></two-goods>
</cell>
<cell style='width: 750; height: 24;'></cell>
</list>
原因和解决方案
在Android SDK中,找到loadmore事件触发方法,当loadmoreoffset=0我使用0.11.0-rc0 SDK时发现,
我将loadmore设置为1进行触发。
答:它在正式文档“loadmore事件”中onloadmore使用,不,我通常在Android和IOS上使用前者。请尝试一下