我試圖超鏈接一個值。超鏈接本身也存儲在XML中。這用於輸出pdf的訂單項。XSLT:將XML超鏈接添加到另一個XML值
這是我當前的代碼:
<fo:block font-size="8pt">
<fo:inline>
<xsl:value-of select="substring-before(_preload_product_id, " - ")" />
</fo:inline>
</fo:block>
我希望能夠以超鏈接添加到字符串。實際的URL鏈接,就像我提到的,來自於XML以及因此它看起來像這樣我的XSL:
<xsl:value-of select="cf_customer_quotation_line_item_product_url" />
我一直在四處尋找,但我經常發現代碼較側重的網站,但我做的PDF。 我也想知道是否有可能這個相同的超鏈接添加到圖像象下面這樣:
<fo:block>
<fo:external-graphic src="url()" content-height="2cm">
<xsl:attribute name="src">
<xsl:value-of select="cf_customer_quotation_line_item_image_url"/>
</xsl:attribute>
</fo:external-graphic>
</fo:block>
你在使用什麼渲染引擎?這可能是該產品的一個特徵。我會看看我使用的產品並回饋給你。 – biscuit314 2014-10-30 18:45:29
完全不確定,但是這個PDF是在一個名爲Workbooks CRM的產品中生成的。 xml version =「1.0」encoding =「UTF-8」 – idxearo 2014-10-30 18:55:58