我有一個Ext.panel.Panel
,我會從外部網頁加載內容到我的面板。ExtJS 4.1從外部網頁加載內容
我試圖用裝載機如下所述: loader question
,您可以在此發現的jsfiddle一個例子: http://jsfiddle.net/eternasparta/sH3fK/
Ext.require([
'Ext.form.*',
'Ext.tip.*'
]);
Ext.onReady(function() {
Ext.QuickTips.init();
Ext.create('Ext.panel.Panel',{
renderTo: Ext.getBody(),
height:400,
width:400,
id:'specific_panel_id'
});
dynamicPanel = new Ext.Component({
loader: {
/*load contents from this url*/
url: 'http://it.wikipedia.org/wiki/Robot',
renderer: 'html',
autoLoad: true,
scripts: true
}
});
Ext.getCmp('specific_panel_id').add(dynamicPanel);
});
也許我不明白怎麼用加載器(如果可能的話)與外部網頁。 所以我的第一個問題是:是否可以使用加載器將頁面http://it.wikipedia.org/wiki/Robot加載到我的面板中?
第二個問題:如果答案是「否」,您如何建議加載該頁面的內容?
謝謝大家
iFrame呢? –