我试图将RadListView与Nativescript-Vue一起使用,并且尝试使用v-template标头,然后使用列表自身的普通v-template。
1)我的标题似乎未被识别,并且始终在全屏上仅显示普通的v模板,而忽略标题。
2)当我尝试在标准v模板上放置名称时,我的应用程序崩溃,并且收到此问题标题中提到的错误。
为什么会这样,这意味着什么?
这是一个列表,需要在height = 200的GridLayout(标题)下显示。我不知道我还能尝试解决什么问题。
<RadListView @scrolled="onHomeListScroll" for="(post, index) in list" ref="listView" row="0">
<v-template name="header">
<GridLayout height="200" />
</v-template>
<v-template name="standardTemplate">
<Label text="test" />
</v-template>
</RadListView>
答案 0 :(得分:0)
此问题已解决,将网格布局行属性设置为 200 。
由于某些原因,行有效,而高度无效。