に私はJSONファイル私は道場のモバイルでの動的なページを作成したい道場
{
Introduction:
[
{
title: "Introduction",
toolbar: "Page 1",
content: "cont, aabitant morbi tristique..."
},
{
title: "about",
toolbar: "Page 2",
content: "contesent vel nisi ipsum..."
},
{
title: "services",
toolbar: "Page 3",
content: "Cras adipiscing sapien nec..."
}
]
}
を持って、JSONから動的なページを作成します。上記のJsonから3ページが前後に移動して作成されます。私は問題を抱えている。私はJsonを次のように読んでいます:
dojo.xhrPost({
url: "start.json",
handleAs: "json",
var viewContainer = new dojox.mobile.ScrollableView({id:"viewContainer"});
load: function(response) {
for (key in response){
// creating each view heading and content here.........
//can you give some hint what should be here?
}
}
私は上記のjsonを読んで、動的なビューを作成する方法を教えてください。 //can you give some hint what should be here?
感謝。私は質問を更新しました。 //ここに何があるべきかのヒントを教えてください。 –