无法从商店获取数据以显示为模型

时间:2011-07-01 14:16:05

标签: model sencha-touch store

我对Sencha Touch有点新意,所以请耐心等待。

在应用程序启动时,我将视口设置为我使用的视口,并将所有视图设置为应用程序命名空间。

launch: function() {
        this.views.viewport = new this.views.Viewport();
        this.views.homecard = this.views.viewport.getComponent('home');
        this.views.usercard = this.views.viewport.getComponent('user');
        this.views.infocard = this.views.viewport.getComponent('info');
}

视口首先加载主视图,在这里我遇到了问题。 这是我的homecard:

ToolbarDemo.views.Homecard = Ext.extend(Ext.Panel, {
    title: "Meny",
    iconCls: "home",
    scroll: "vertical",
    bodyStyle: "background-color: #FFFFFF !important; background-image:                      url(images/background.png) !important; background-repeat:no-repeat; background-position:bottom left;",
    initComponent: function() 
    {
        ToolbarDemo.views.Homecard.superclass.initComponent.apply(this, arguments); 
    },
    store:ToolbarDemo.stores.feedStorer,
    tpl:buttonTemplate,
    dockedItems: 
    [
        {
        xtype: "toolbar"
        }
    ],
    defaults: {height: "110px"},

});

这是我的模板:

var buttonTemplate = new Ext.Template
(
    '<tpl for=".">',
    '   <div class="home_button_container">',
    '       <img class="home_button" src="{url_icon_large}" />',
    '       <p class="home_button_text">{name}</p>',
    '   </div>',
    '</tpl>'
);

这是我的模特:

Ext.regModel('Feeds', {
    fields: [
        {name: 'name', type: 'string'},
        {name: 'url_icon_small', type: 'string'},
        {name: 'url_icon_medium', type: 'string'},
        {name: 'url_icon_large', type: 'string'},
        {name: 'url_icon_large_p', type: 'string'},
        {name: 'url', type: 'string'},
        {name: 'sort_order', type: 'string'}
    ]
});

这是我的商店:

ToolbarDemo.stores.feedStore = new Ext.data.Store({
    model: 'Feeds',
    storeId: 'feedStore',
    proxy: {
        type: 'scripttag',
        url : 'http://localhost/webservice/feeds.php?username=' + sUsername + '&password=' + sPassword,
        reader: {
            type: 'json',
            root: 'feeds'
        }
    },
    autoLoad: true
});

这是JSON:

  

{ “进给”:[{ “名称”: “链接”, “url_icon_small”: “HTTP:URL / link_small.png”, “url_icon_medium”: “URL / link_medium.png”, “url_icon_large”:“URL /link_large.png","url":"url/feed_content.php?type=link","sort_order":"1"}],"updated":[{"last_updated":"2011-06-09   11时十五分47" 秒}]}

问题是此视图没有显示任何内容,我怀疑该模型可能有问题? 我已经记录了商店,我可以看到它获得了它应该的数据。

有人建议解决这个问题吗?

提前致谢


编辑(关于DataView的提示): Ext.Panel改变:

ToolbarDemo.views.Homecard = new Ext.Panel({

    title: "Meny",
    iconCls: "home",
    scroll: "vertical",
    bodyStyle: "background-color: #FFFFFF !important; background-image: url(images/background.png) !important; background-repeat:no-repeat; background-position:bottom left;",
    initComponent: function() 
    {
        ToolbarDemo.views.Homecard.superclass.initComponent.apply(this, arguments); 
    },
    dockedItems: 
    [
        {
        xtype: "toolbar"
        }
    ],
    defaults: {height: "110px"},
    items: new Ext.DataView(
    {
        tpl:buttonTemplate,
        store: ToolbarDemo.stores.feedStorer,
        autoHeight:true,
        multiSelect: true,
        loadingText: 'Laster data',
        itemSelector:'div.home_button_container',
        emptyText: 'No images to display'
    })
});

1 个答案:

答案 0 :(得分:0)

目前设置由Ext.Dataview处理,而不是Ext.Panel。继承Ext.Component形式的任何内容都可以传递datatpl参数,并导致正文加载将数据传递到tpl的结果。

但是,您使用store来处理未在Ext.Panel类中构建的数据。如果您转换为Ext.Dataview并定义所需的必要参数(当您尝试创建一个不需要所有参数的参数时会抛出错误),那么您的模板/面板将正确显示。