次のような JQuery Mobile List ビューがあります。
{
"title": "Available Cars",
"names": [
{
"name": "Ford",
"image": "./images/ford.png",
"flags": "./images/us.png",
"description": "Make Average Cars",
"detail": [
{
"Profile": "Big US company",
"Background": "Started some time ago"
}
]
},
{
"name": "BWM",
"image": "./images/bmw.png",
"flags": "./images/gm.png",
"description": "Make Great Cars",
"detail": [
{
"Profile": "MediumGermancompany",
"Background": "Startedsometimeago"
}
]
},
{
"name": "VW",
"image": "./images/vw.png",
"flags": "./images/gm.png",
"description": "MakeGoodCars",
"detail": [
{
"Profile": "LargeGermancompany",
"Background": "Startedsometimeago"
}
]
}
]
}
この JSON は、テンプレート ライブラリを使用して適切な HTML に動的にレンダリングされます。テンプレート ライブラリは、最初のレベルの名前と関連する画像に基づいて単純なリスト ビューを作成します。
"description": セクション内のデータをデータの詳細ビューにレンダリングしたいと考えています。したがって、リスト項目をクリックすると、詳細ビューに遷移します。
必要なデータはすべて揃っているので、サーバーにさらに要求を行う必要はありません。
私は最初の部分を完了し、それが機能していることを示すjsfiddleをここに示します:
http://jsfiddle.net/carlskii/7WK7P/30/
ここでまともな例が見つからないようなので、誰かがこれを行う方法を提案してください!