Sencha Touch 2商店类型错误 [英] Sencha Touch 2 Store TypeError

查看:12
本文介绍了Sencha Touch 2商店类型错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在关注Sencha网站上的视频,以创建我的第一个应用程序。

这是我正在关注的视频:Video

这是我用于博客选项卡的代码:

Ext.define('GS.view.Blog',{
    extend: 'Ext.navigation.View',
    xtype: 'blogpanel',

    requires: [
        'Ext.dataview.List',
        'Ext.data.proxy.JsonP'
    ],

    config: {
        title: 'Blog',
        iconCls: 'star',

        items: {
            xtype: 'list',
            itemTpl: '{title}',

            store: {
                autoLoad: true,
                fields: ['title', 'author', 'content'],

                root: {
                    leaf: false
                },

                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'
                    }
                }
            }
        }
    }
});

在Safari控制台中,它在StoreManager.js上显示以下错误:97:

TypeError: 'undefined' is not a valid argument for 'instanceof' (evaluating 'store instanceof Ext.data.Store')

我做错了什么?

推荐答案

将此代码添加到store:

 store: new Ext.create('Ext.data.Store',{
            autoLoad: true,
            fields: ['title', 'author', 'content'],

            root: {
                leaf: false
            },

            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 Touch 2商店类型错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆