我正在开发一个SharePoint Web部件,它基本上是一种连接到SPO列表的表单。在此表格中,我正在考虑使用附件字段供用户附加word或pdf文档。我可以在代码中使用任何东西来在表单中显示此附件的内容,或者以某种方式打印文档的内容而不必打开文档吗?
答案 0 :(得分:1)
您可以通过将文本附加到文档的URL来使用SharePoint Online Office Web Apps。
https://yourDomain/sites/yourSite/Lists/Tasks/Attachments/1/AdventureWorksBikes.xlsx?web=1
或使用直接路径访问文档查看器页面:
https://yourDomain/sites/yourSite/sites/yourSite/_layouts/15/Doc.aspx?sourcedoc=/sites/yourSite/Lists/Tasks/Attachments/1/AdventureWorksBikes.xlsx&action=default&mobileredirect=true
如果要在现有页面中显示上述内容,可以将其放在IFRAME中。