如何在Sharepoint XSL中调试错误?

时间:2018-02-21 06:33:36

标签: xslt sharepoint

<xsl:template match="Row">                                 
    <div id="listitem-{@ID}">
        <div class="<xsl:value-of select="@Col-md" /> ">
            <div class="features-item text-center">
                <div class="features-icon">
                    <img>
                    <xsl:attribute name="src">
                        <xsl:value-of select="@Picture" /></xsl:attribute></img>
                </div>
                <h3 class="features-title font-alt">
                    <xsl:value-of select="@Title" />
                </h3>
                <div class="features-descr">
                    <xsl:value-of select="@Body" disable-output-escaping="yes" />
                </div>                  

            </div>
        </div>
    </div>
</xsl:template>

我是XSLT的新手。我创建了一个包含引导列值的SharePoint列表字段名Col-md,例如col-Md-6col-md-4col-md-3。我正在传递像<div class="<xsl:value-of select="@Col-md" /> "> XSLT这样的值,但是我得到了错误。

0 个答案:

没有答案