Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Sencha touch 2 如何在sencha Touch2中使用提要播放youtube视频_Sencha Touch 2 - Fatal编程技术网

Sencha touch 2 如何在sencha Touch2中使用提要播放youtube视频

Sencha touch 2 如何在sencha Touch2中使用提要播放youtube视频,sencha-touch-2,Sencha Touch 2,我想使用youtube提要播放youtube视频,如http://www.youtube.com/rss/user/userName/videos.rss xtype: 'nestedlist', title: 'Blog', iconCls: 'star', displayField: 'title', store: { type: 'tree', fields: [ 'title', 'link',

我想使用youtube提要播放youtube视频,如
http://www.youtube.com/rss/user/userName/videos.rss

xtype: 'nestedlist',
    title: 'Blog',
    iconCls: 'star',
    displayField: 'title',

    store: {
        type: 'tree',

        fields: [
            'title', 'link', 'author', 'contentSnippet', 'content',
            {name: 'leaf', defaultValue: true}
        ],

        root: {
            leaf: false
        },

        proxy: {
            type: 'jsonp',
            url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=http://www.youtube.com/rss/user/JustinBieberVEVO/videos.rss',
            reader: {
                type: 'json',
                rootProperty: 'responseData.feed.entries'
            }
        }
    },

    detailCard: {
        xtype: 'video',
        scrollable: true,
        styleHtmlContent: true
    },

    listeners: {
        itemtap: function(nestedList, list, index, element, post) {
            this.getDetailCard().setHtml(post.get('content'));
        }
    }
},
当用户单击提要列表时,应用程序将播放直接视频
请帮我做这个