Cod*_*Guy 1 html javascript google-apps-script google-apps-script-addon
我想在 Google 电子表格插件对话框的对话框中显示 PDF。
可以在此处找到有关应用程序脚本对话框的更多信息
https://developers.google.com/apps-script/guides/html/
<iframe id="iframe" src="https://www.w3docs.com/uploads/media/default/0001/01/540cb75550adf33f281f29132dddd14fded85bfc.pdf" frameborder="0" height="500px" width="100%"></iframe>
Run Code Online (Sandbox Code Playgroud)
当我检查时,我看到消息Resource 被解释为 Document 但使用 MIME 类型 application/pdf 传输:“ https://www.w3docs.com/uploads/media/default/0001/01/540cb75550adf33f281f29132dddd14fded85bfc.pdf ”。
您可以嵌入 Google 查看器以使用<iframe>.
<iframe src="https://docs.google.com/viewer?url=https://www.w3docs.com/uploads/media/default/0001/01/540cb75550adf33f281f29132dddd14fded85bfc.pdf&embedded=true" height="1080" width="1920"></iframe>
Run Code Online (Sandbox Code Playgroud)
只要确保更改height和width属性<iframe>。