gpt4 book ai didi

xml - 优雅地处理 Umbraco XSLT 宏中丢失的 XML 提要

转载 作者:数据小太阳 更新时间:2023-10-29 02:14:11 24 4
gpt4 key购买 nike

我正在尝试使用 Umbraco 中的 XSLT 宏读取 XML 提要,并让它以良好的格式显示内容。当提要可用时,我的宏工作正常,但如果提要返回 404,我无法设法让 XSLT 妥善处理它。

我正在使用 umbraco.library:GetXmlDocumentByUrl() 获取 XML我发现它正在创建一个解析错误,有时它只是使站点崩溃而不是返回我指定的错误文本。

我还尝试将 GetXmlDocumentByUrl() 包装在 document() 测试中,看看我是否可以使用它来更好地处理错误。我发现虽然这会阻止网站崩溃,并且在 XML 提要存在的情况下也能正常工作,但它仍然会产生解析错误而不是显示我的错误文本。

如果有任何帮助或建议,我将不胜感激,我的代码如下:

<xsl:variable name="feed" select="'http://url.to.feed'"/>

<xsl:template match="/">
<xsl:value-of select="document($feed)"/>
<!-- start writing XSLT -->
<xsl:choose>
<xsl:when test="string-length($feed) > 0 and $feed != ''">
<xsl:choose>
<xsl:when test="document($feed)">
File found
<xsl:variable name="feedContent" select="umbraco.library:GetXmlDocumentByUrl($feed, $cacheRate)"/>
<xsl:choose>
<xsl:when test="count($feedContent/error) &gt; 0">
<!--<xsl:when test="$feedContent != 'error'">-->
<p class="feedList">
<strong>This dynamic content is currently not available</strong><br />
The content could not be loaded. Please verify that you are on the correct page and that you have an
active internet connection.
</p>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="renderFeed">
<xsl:with-param name="feedContent" select="$feedContent"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
Can't find the file...
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<p class="feedList">
<strong>No content exists for this page</strong><br />
Please view another page.
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>

更新:我已经尝试浏览我的代码以将问题简化为以下内容,这应该使用 GetXmlDocumentByUrl 的非缓存实现,这样我就可以确保我在那里没有问题并直接将值输出到确保这不是我选择的语句:

 <xsl:template match="/">
<!-- start writing XSLT -->
<xsl:choose>
<xsl:when test="string-length($feed) > 0 and $feed != ''">
<xsl:variable name="vDoc" select="umbraco.library:GetXmlDocumentByUrl($feed)"/>
<xsl:value-of select="$vDoc"/>
<xsl:choose>
<xsl:when test="$vDoc">
File found
</xsl:when>
<xsl:otherwise>
Can't find the file...
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<p class="feedList">
<strong>No content exists for this page</strong><br />
Please view another page.
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>

对于明确的 404 页面,它返回一个字符串“System.Net.WebException:远程服务器返回错误:(404)未找到。在 System.Net.HttpWebRequest.GetResponse() 在 umbraco.library.GetXmlDocumentByUrl( String Url)"但是,对于我实际上遇到超时问题的提要,我仔细检查了 fiddler,似乎该页面实际上返回了 200,但不是 XML 文档,我应该在我的 renderFeed 中提到这一点模板如下,所以我仍然希望它显示其他内容而不是超时。

 <xsl:template name="renderFeed">
<xsl:param name="feedContent" />
<xsl:choose>
<xsl:when test="count($feedContent//item) &gt; 0">
//Render Feed content
</xsl:when>
<xsl:otherwise>
<p class="feedList">
<strong>No content exists for this page</strong><br />
Please view another page.
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>

我从示例中获得了 when 测试,是否有更好的方法来测试它?

最佳答案

我能看到的唯一问题是,如果您的 XmlDocument 正在加载 text/html 而不是 text/xml 的 ContentType 。我写了一个简单的函数,基于 Umbraco 中的原始函数,允许您更改 WebRequest 超时,它会检查 ContentType

public static XPathNodeIterator GetXmlDocumentByUrl(string Url, int requestTimeout = 100000)
{
XmlDocument xmlDoc = new XmlDocument();
WebRequest request = WebRequest.Create(Url);

try
{
// Set the Request Timeout
request.Timeout = requestTimeout;
using (WebResponse response = request.GetResponse())
{
if (response.ContentType.Contains("text/xml"))
{
using (Stream responseStream = response.GetResponseStream())
{
XmlTextReader reader = new XmlTextReader(responseStream);
xmlDoc.Load(reader);
}
}
else
xmlDoc.LoadXml(string.Format("<error url=\"{0}\">Failed to load an ContentType of XML</error>",
HttpContext.Current.Server.HtmlEncode(Url)));
}
}
catch (WebException err)
{
xmlDoc.LoadXml(string.Format("<error url=\"{0}\">{1}</error>",
HttpContext.Current.Server.HtmlEncode(Url), err));
}
catch (Exception err)
{
xmlDoc.LoadXml(string.Format("<error url=\"{0}\">{1}</error>",
HttpContext.Current.Server.HtmlEncode(Url), err));
}

XPathNavigator xp = xmlDoc.CreateNavigator();
return xp.Select("/");
}

关于xml - 优雅地处理 Umbraco XSLT 宏中丢失的 XML 提要,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9068376/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com