0
我的數據最初被存儲在結構化的這樣的XML文件(在每個行的一堆實體,行中的每個實體和細胞的)使用XML創建dojo.store.memory?
<entity i=1>
<row i =1>
<cell i=1>
<cell i=2>
</row>
<row i=2>
<cell i=1>
<cell i=2>
</row>
</entity>
實施例I從道場教程讀是這樣的:
require([
'dojo/store/Memory',
'gridx/Grid',
'gridx/core/model/cache/Sync'
], function(Store, Grid, Cache){
var store = new Store({
data: [
{id: 1, title: 'Hey There', artist: 'Bette Midler'},
{id: 2, title: 'Love or Confusion', artist: 'Jimi Hendrix'},
{id: 3, title: 'Sugar Street', artist: 'Andy Narell'}
]
});
......
});
如何使用XML樣式表創建dojo存儲?我應該在我的XML樣式表中使用嵌入式JavaScript嗎?