我的网站上有pdf文件,我想在页面上显示,我试过:
switch error {
case .NoSignal : // give alert to the user about the signal
case .ServerError : // give alert to the user about server error
}
但是文件已下载。
我尝试使用谷歌驱动器:
<iframe src="https://mywebsite.com/files/file.pdf" frameborder="0" width="600" height="550" style="margin:0px; padding:0px;"></iframe>
但是我得到了登录页面的html,我认为它会自动重定向到登录页面。
我尝试使用iframe访问包含该文件的文件夹:
<iframe src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://mywebsite.com/files/file.pdf" ></iframe>
但是我收到禁止的消息,告诉我编辑我的文件权限。
- 我是否可以使用特定权限来访问文件夹或文件?
- 是否有图书馆,任何网络开发语言中的功能或任何有用的东西?
答案 0 :(得分:1)