我是 Sencha-Touch 2 的新手,正在做一个项目,我必须在我的应用程序中访问一个网站,但该网站与应用程序位于不同的域中。
我想将它加载到 iframe 中,但 iframe 中的内容不显示 iframe 容器中外部 url 的任何内容。
一个例子如下。
new Ext.TabPanel({
fullscreen: true,
type: 'dark',
sortable: true,
items: [{
title: 'Tab 1',
html: '1',
cls: 'card1'
}, {
title: 'Tab 2',
html: '2',
cls: 'card2'
}, {
title: 'The Latest',
html: '<iframe src =\"http://www.google.com\"></iframe>',
id: 'feedTab',
iconCls: 'team',
scroll : false
}]
});