visualforce 的 RenderAs PDF 可以包含 href 链接吗?

Can visualforce's RenderAs PDF include href links?

我们正在使用 SalesForce 的 renderAs="PDF" 选项,我们希望在生成的 PDF 正文中有一个可点击的 link。这可能吗?

我已经尝试过 ... 并且我已经尝试过 .. .,两者都会导致不可点击的渲染版本。

有没有人找到适用于 salesforce 引擎的方法?

<apex:page standardController="Opportunity"  showHeader="false" renderas="pdf">
<apex:outputLink value="https://google.com">https://google.com</apex:outputLink>

<table border="0" cellspacing="0" cellpadding="0" width="100%" id="table1">
  <tr>
    <td>
...

更新: 这取决于浏览器。 Firefox 不允许您单击 link,Google Chrome 可以。

您要在 PDF 中呈现哪种类型的 link,亲戚 link?使用 outputlink 我以前有过相同的行为,但仅限于相对 links.

使用完整的 URL 应该渲染 hyperlink。