Sharepoint内容查询webpart未显示图像(间歇性)

时间:2017-03-29 11:48:10

标签: xslt sharepoint content-query-web-part

在sharepoint中,我创建了一个内容查询webpart,用于查询列表并以3列网格格式显示标题和ImageURL字段。

由于一些非常奇怪的原因,代码大部分时间都可以工作,图像和标题显示在网格中,如我所愿。但是,如果您刷新页面几次,则无法找到图像并将其插入标记。标题确实一直显示。

我在XSL itemStyles.xsl中创建了自己的Item Style变量。这是我的代码:

<xsl:template name="customStyle" match="Row[@Style='customStyle']" mode="itemstyle">
      <xsl:variable name="SafeLinkUrl">
          <xsl:call-template name="OuterTemplate.GetSafeLink">
              <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
          </xsl:call-template>
      </xsl:variable>
      <xsl:variable name="SafeImageUrl">
          <xsl:call-template name="OuterTemplate.GetSafeStaticUrl">
              <xsl:with-param name="UrlColumnName" select="'ImageURL'"/>
          </xsl:call-template>
      </xsl:variable>
      <div class="item">
          <xsl:if test="string-length($SafeImageUrl) != 0">
                  <a href="{$SafeLinkUrl}">
                    <img class="image customstyle-img" src="{$SafeImageUrl}" title="{@ImageUrlAltText}" />
                  </a>
          </xsl:if>
      </div>
  </xsl:template>

如果有人能提出任何建议,我将不胜感激。

奥利弗

1 个答案:

答案 0 :(得分:0)

盒子外码由于某种原因重复了imageURL。以下代码修复了它:

<img class="item_customImage" >
    <xsl:attribute name="src">
        <xsl:value-of select="substring-before(@ImageURL, ',')" />
    </xsl:attribute>
 </img>