我需要传递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();
任何人都知道可能会发生什么?
答案 0 :(得分:1)
可能是你错过了:'after“data =”。考虑到您收到包含路径的错误,这可能不太可能。
答案 1 :(得分:0)
您必须从保存网页的文件夹中访问该文件夹,如下所示:
//if your webpage is held in the directory: /opt/apache/htdocs/index.html,
//then your path should look like this:
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();
尝试并告诉我们会发生什么