这是我的代码:
getPdfDataIniFrame: function(vesselName){
var strVesselName=vesselName;
vesselSpecificationName=strVesselName.replace(" ","_");
speficationUrl="http://BaseUrl/"+vesselSpecificationName+".pdf"
Ext.getCmp('pnlPdf').update('<iframe id="iframeId" width="100%" height="85%" frameborder="0" scrolling="no" src="'+speficationUrl+'"></iframe>')
}
答案 0 :(得分:0)
为什么你不能尝试使用ajax实现。我觉得plm可能与iframe绑定请求并更新到组件。试试下面的一个。它可能会有所帮助!!
Ext.Ajax.request({
url: <url>,
method: 'POST',
headers: {
'Content-type': 'application/json',
'Accept': 'application/pdf'
},
success: function(response){
},
failure: function(response){
}
});
Accept: application/pdf
是最重要的。
由于