我需要传递要在窗口中显示的 PDF 路径,但是找不到路径,我收到以下错误:
GET http://localhost:8081/home/MyPdf.pdf 404 (Not Found)
该文件夹具有读取、写入和执行的权限。
Ext.create(Ext.window.Window', {
width : 800,
height : 600,
maximizable : true,
layout : 'fit',
items : [ {
html : '<object width="100%" height="100%" data=
+ /home/MyPdf.pdf + '"></object>'
} ]
}).show();
有谁知道可能会发生什么?