簡單問題在這裏。我怎麼能把這個JSON字符串放到一個Ext.data.Store中?將JSON字符串放入商店
{
"elements":[
{
"element":{
"name":"value 1",
"id":"element 1",
"attributes":[
{
"attrname":"id",
"attrvalue":"This is the ID"
},
{
"attrname":"name",
"attrvalue":"This is the name"
},
{
"attrname":"description",
"attrvalue":"This is the description"
},
{
"attrname":"table_name",
"attrvalue":"This is the table"
}
]
}
}
}
這是我的問題的簡化版本:Placing JSON response elements into a store- Ext JS
乾杯!
你能否提供更多信息?這個JSON從哪裏來?商店將存儲模型實例;該商店是否會存儲多個「元素」實例?看起來每個「屬性」將是一個單獨模型的實例。你可以使用關聯。 –
我的JSON來自我的服務器的請求,我把它變成一個字符串。現在我試圖將這些單獨的屬性放入商店,然後放入網格中。如果你按照我的鏈接,它會給你更多的細節 –
按照這個例子:http://stackoverflow.com/questions/15522423/reader-root-in-extjs-with-nested-json-array –