如何在 Sitecore 中打开 PDF

发布于 2024-09-24 08:29:58 字数 227 浏览 2 评论 0原文

当用户单击链接时,如何打开存储在 Sitecore 中的 pdf 文档? pdf 文档存储在媒体库中。 这是我现在的代码:

Sitecore.Data.Fields.LinkField linkField = item.Fields["Url"];
tab.NavigateUrl = linkField.Url;

How do I open a pdf document stored in Sitecore when a user clicks a link? The pdf document is stored in the Media Library.
Here's the code I have now:

Sitecore.Data.Fields.LinkField linkField = item.Fields["Url"];
tab.NavigateUrl = linkField.Url;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心安伴我暖 2024-10-01 08:29:58

PDF 媒体与媒体库中任何其他类型的规则相同。如果您只需要检索媒体 url 来构建链接,请执行以下操作:

MediaItem mediaItem = linkField.TargetItem;
if(mediaItem != null)
MediaManager.GetMediaUrl(mediaItem);

您还可以简单地使用 Web 控件或 xsl 控件来呈现链接:
Web 控制:

<sc:Link Field="Url" Item="if you need to process specific item" runat="server" />

如果您的问题涉及单击链接时的浏览器行为,请将 ForceDownload 设置为 true:

<mediaType name="PDF file" extensions="pdf">
  <mimeType>application/pdf</mimeType>
  **<forceDownload>true</forceDownload>**
  <sharedTemplate>system/media/unversioned/pdf</sharedTemplate>
  <versionedTemplate>system/media/versioned/pdf</versionedTemplate>
</mediaType>

Same rules apply to a PDF media as to any other type in media library. If you need just to retrieve the media url to construct a link, do the following:

MediaItem mediaItem = linkField.TargetItem;
if(mediaItem != null)
MediaManager.GetMediaUrl(mediaItem);

You can also simply use web control or xsl control to render the link:
Web control:

<sc:Link Field="Url" Item="if you need to process specific item" runat="server" />

If your question concerns browser behavior when the link is clicked, set ForceDownload to true:

<mediaType name="PDF file" extensions="pdf">
  <mimeType>application/pdf</mimeType>
  **<forceDownload>true</forceDownload>**
  <sharedTemplate>system/media/unversioned/pdf</sharedTemplate>
  <versionedTemplate>system/media/versioned/pdf</versionedTemplate>
</mediaType>
辞旧 2024-10-01 08:29:58

请注意 Mac 上 Firefox 的问题,因为 PDF 似乎无法在 Mac 上运行。

为此,您需要根据此设置一些内容。

如果您无法访问,基本上会告诉您转到 web.config,找到此:

<mediaType name="PDF file" extensions="pdf">

并将其更改

<forceDownload>false</forceDownload>

<forceDownload>true</forceDownload>

Be aware of problems with Firefox on a Mac, as PDFs wont seem to work there.

For that you need to setup some stuff according to this.

if you can't access that is basically tells you to go to the web.config, find this:

<mediaType name="PDF file" extensions="pdf">

and change the

<forceDownload>false</forceDownload>

to

<forceDownload>true</forceDownload>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文