nativescript-vue中的ListView滚动缓慢

时间:2019-01-25 12:24:52

标签: vue.js nativescript vuex nativescript-vue

滚动时列表视图太慢了。它触底并反弹,就像显示的物品用完了。如果重试,它可以让您进一步滚动。在备份列表的过程中也会发生同样的事情。

我使用vuex吸气剂仅装载40个项目。

computed: {
    history () {
        return this.$store.getters.allHistory;
    }
},

然后ListView就是

<ListView ref="listView" for="item in history">
    <v-template>
        <StackLayout height="60" padding="10">
            <Label :text="item.title" textWrap="true"></Label>
        </StackLayout>/>
    </v-template>
</ListView>

1 个答案:

答案 0 :(得分:1)

删除固定高度和填充似乎可以解决。这正在工作...

<ListView ref="listView" for="item in history">
    <v-template>
        <GridLayout columns="auto,*" rows="auto, auto" margin="10">
            <Image v-show="item.poster_url.length > 0" :src="item.poster_url" marginRight="5"
                   stretch="aspectFill" height="100" borderRadius="5"></Image>
            <StackLayout col="1" row="0" rowSpan="2">
                <Label :text="item.title" textWrap="true"></Label>
            </StackLayout>
        </GridLayout>
    </v-template>
</ListView>