0

我需要传递要在窗口中显示的 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();      

有谁知道可能会发生什么?

4

2 回答 2

1

可能是您在“data =”之后缺少一个:'。考虑到您收到包含路径的错误,这可能不太可能。

于 2012-10-18T15:46:48.257 回答
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();

试试看,告诉我们会发生什么

于 2012-10-18T17:46:16.610 回答