我對Sencha-touch非常陌生,我正在關注文檔網站上的入門視頻。Sencha-touch列表不顯示數據
應用程序在列表中顯示博文的一部分,但它似乎不適用於我。
我在視頻中有相同的代碼,但它不起作用。
Ext.define('GS.view.Blog', {
extend: 'Ext.navigation.View',
xtype: 'blog',
config: {
title: 'Blog',
iconCls: 'star',
items: {
xtype: 'list',
itemTpl: '{title}',
store: {
autoload: true,
fields: ['title', 'link', 'author'],
proxy: {
type: 'jsonp',
url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=http://feeds.feedburner.com/SenchaBlog',
reader: {
type: 'json',
rootProperty: 'responseData.feed.entries'
}
}
}
}
}
});
從sencha觸摸代碼/庫改變了自視頻或我做錯了什麼(和什麼)?
我的天.. Thx!這是我不會再犯的一個錯誤! – 2012-03-29 06:28:18