在主题中,我正在尝试将此 json 数据解析到我的 QML 项目中
链接: http ://www.rad.io/info/menu/valuesofcategory?category=_genre
所以我有 188 个元素的列表,但不知道如何获取每个元素的值...
这是我在此示例中使用的 JSONListModel 组件的链接
这是qml代码:
import QtQuick 2.0
import Ubuntu.Components 1.1
import "../components"
import Ubuntu.Components.ListItems 1.0 as ListItem
Page {
title: i18n.tr("by Genre")
JSONListModel {
id: json
source: "http://www.rad.io/info/menu/valuesofcategory?category=_genre"
query: "$"
}
UbuntuListView {
height: parent.height
width: parent.width
clip: true
model: json.model
cacheBuffer: contentHeight
delegate: ListItem.Standard {
text: index + " " + indexValue
}
}
}