- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在使用附加了 XSL 的 XML 进行编码。
当我在浏览器(IE + Google Chrome)中打开它时,它会显示白屏。但是,当我在 XML 记事本 2007 中打开相同的文件时,它会显示具有来自 XSL 的正确样式的 XML 数据。
我是否遗漏了有关在浏览器中显示它的内容?
我在顶部有标准声明,我看不出我的代码有什么奇怪的地方;这是一个非常简单的文件,我正在对其进行测试以尝试使其正常工作。
XML 文档
<?xml version = "1.0" encoding ="ISO-8859-1"?>
<?xml-stylesheet type ="text/xsl" href="menu.xslt"?>
<menu>
<food>
<name>Afternoon Tea</name>
<description>Afternoon tea at Cuisine De Paris features a range of handmade mini sandwiches and delicate pastieries served with a selection of world tea</description>
<price>£40</price>
</food>
<food>
<name>Shrimp with sun rippened tomato and salad</name>
<description>A medittearan inspired chef favourite bringing together the intense taste of tomatos with the subtle bite of the shrimp</description>
<price>£20</price>
</food>
<food>
<name>Gold encrusted egg yolk, chicken sand, rye and parmesan</name>
<description>Ipsum</description>
<price>£30</price>
</food>
<food>
<name>Poached egg with couscous and salmon</name>
<description>A delicated poached egg lavished with finiest French sourced cous cous</description>
<price>£25</price>
</food>
<food>
<name>Slow roasted crab with a selection of the restaurant's finest vegetables</name>
<description>Our crab is handmade and rested for two months before it's cooked in a slow cooker in a rich oil</description>
<price>£30</price>
</food>
<food>
<name>Salmon wrapped parcel with white aspargus decorated with peas and a specalist sauce</name>
<description>A slowly smoked salmon sourced ethincally with a punchy English grown white aspargus, topped off with a beautifully cooked trademark sauce</description>
<price>£27</price>
</food>
<food>
<name>Roasted crab with lime</name>
<description>Our signature roasted crab with candied lime is the perfect dinner for a cold winter night</description>
<price>£35</price>
</food>
<food>
<name>Fried cod with roasted sun blushed tomatoes and a green leaf sauce</name>
<description>Our cod is fried in extra virgin oil, looking in all of the richest of the cod with the oil, occampanied by fresh roasted parsnips and authentic mediterrean sun blushed tomatoes.</description>
<price>£40</price>
</food>
<food>
<name>Green pea sauce with pork</name>
<description>Our tender pork has been left to rest for 2 months before being served at Cuisine De Paris, making the succlent flavours shine in this dish. The green pea sauce is the perfect occampy to this tender pork dish.</description>
<price>£33</price>
</food>
<food>
<name>Rabbit with creamy sauce</name>
<description>Slow cooked rabbit in a warm vegetable stock topped with a creamy bread sauce and garnish</description>
<price>£40</price>
</food>
<food>
<name>Beef in a creamy garlic sauce wrapped in a tendor pork shell </name>
<description>Locally sourced beef joints are used to create this infusion of flavours, dressed with a range of heart warmly cooked vegetables</description>
<price>£40</price>
</food>
<food>
<name>Noodles with carrot soup</name>
<description>Authentic Japense transulcent noodles in a freshly made carrot soup infused with giner and cinnamon</description>
<price>£30</price>
</food>
<food>
<name>Salmon served with a pea sauce and vegetables</name>
<description>Our salmon is slowly cooked to look in the richest and flavours with are brought our with the pea sauce and accompaning vegetables</description>
<price>£38</price>
</food>
<food>
<name>Oatmeal caramel stack topped with caramel</name>
<description>Handmade oatcakes layered between a creamy caramel sauce topped with an interuicty designed caramel decoration</description>
<price>£20</price>
</food>
<food>
<name>Vanillia icecream wrapped in shoe pastry encompassed in a vanilla chocolate decoration</name>
<description>Vanilla ice cream handmade to a Cuisine De Paris own recipe with poppy seeds, wrapped in a rich shoe pastry and beautiful decoration</description>
<price>£25</price>
</food>
<food>
<name>A strawberry ice cream swirl with mango icecream</name>
<description>Our delicate strawberry ice cream swirl is a treat for both adults and children a like with an additional handmade mango ice cream for complementary flavours</description>
<price>£25</price>
</food>
<food>
<name>Chocolate sponge in a hot fudge sauce</name>
<description>A light sponge filled with a creamy chocolate mousse bathed in a rich hot fudge sauce</description>
<price>£20</price>
</food>
<food>
<name>A light after dinner pate</name>
<description>A liver and thyme pate is a wonderful option for a savoy dessert with us. With ethically sourced pork to combination of flavours really hits the spot</description>
<price>£23</price>
</food>
<food>
<name>A vanillia mousse wrapped in chocolate shoe pastry on top of an oatmeal biscuit and coffee chocolate ice cream</name>
<description>Our handmade vanillia mousse is the perfect finish to a meal at Cuisine De Paris and with an extragant chocolate dome to complete the dessert the rich flavours will leave you wanting more</description>
<price>£30</price>
</food>
</menu>
XSLT 样式表
<?xml version = "1.0"?>
<xsl:stylesheet version ="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match = "/">
<html>
<body style="font-family:Arial, helvetica, sans-serif; font-size: 12pt; background-color:#EEEEEE">
<xsl:for-each select="menu/food">
<div style = "background-color:#009134; color:white; padding: 4px">
<span style = "font-weight: bold; color: white">
<xsl:value-of select ="name"/>
</span>
- <xsl:value-of select="price"/>
</div>
<div style = "margin-left: 20px; margin-bottom: 1em; font-size: 10pt">
<xsl:value-of select="description"/>
<span style ="font-style:italic">
(<xsl:value-of select = "price"/> Price per serving)
</span>
</div>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
在 IE 中打开显示长行中的 xml 代码(无格式但不是树形),Google Chrome 显示空白页
最佳答案
试试这个,
将符号“£”更改为相应的 unicode 值 £在你的 XML 文件中,然后我得到了结果。
关于xml - 为什么 XML 不显示在浏览器中,但在 XML Notepad 2007 (Microsoft) 中正确显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27720092/
我正在尝试将 Outlook API 与我的 React 应用程序集成。当我尝试使用 microsoft-graph-client 实现身份验证时,遇到以下错误。 'ImplicitMSALAuthe
我正在尝试使用 Microsoft Graph Beta API 在 Microsoft Teams 中创建 channel 。在文档中,它说 channel 实体具有属性 IsFavoriteByD
我的目标很简单。我想使用图形 API 将自动聊天消息发送到 MS Teams channel 。 这似乎是图形 API 的测试版功能,仅在 Microsoft.Graph.Beta 中可用。 我已经阅
通过委派权限获取 Teams channel 消息时(用户是团队成员): https://graph.microsoft.com/beta/teams/ {team_id}/channels/{cha
我正在使用带有 OData 端点的 Web API 和 Entity Framework 创建一个 RESTful 服务。 Microsoft.AspNet.WebApi.OData 和 Micros
我可以通过对标题和作者姓名的评估查询(以及解释查询)获得良好的结果。 但是如果我想通过 DOI 查找论文怎么办? 我可以通过扩展元数据描述(在现有搜索的属性中)获取条目的DOI信息,但是由于扩展元数据
我正在尝试通过displayName查询用户,但是在同时使用C#SDK和Graph Explorer发送请求时,我无法转义单引号。 更新:在示例中不清楚,我遇到麻烦的搜索词是I' 查询示例: http
我在使用 Microsoft fakes 的解决方案中有一个单元测试项目,当我构建它时出现以下错误。它提示无法加载的 DLL 在磁盘上。我已经打开了 Fusion 日志记录,这表明绑定(bind)成功
我想创建一个应用程序,当用户在 MS Teams 中接到电话时会收到通知。我的意思是我想在来电事件上订阅一些东西,然后根据来电信息做一些事情。这可能吗?到目前为止,我在 SDK 中没有看到任何事件。
如果我开发一个网站,它是否会以相同的方式在 IE11、Chrome、Firefox 和 edge 上运行,还是我们需要专门为 IE11 编写代码?我没有 Windows 8,因此无法在边缘浏览器上测试
我几个月前为某些收件箱创建了一些订阅,系统成功收到了有关收到电子邮件的通知,订阅也定期更新以增加到期日期。这是我的订阅列表: https://graph.microsoft.com/v1.0/subs
如果我开发一个网站,它是否会以相同的方式在 IE11、Chrome、Firefox 和 edge 上运行,还是我们需要专门为 IE11 编写代码?我没有 Windows 8,因此无法在边缘浏览器上测试
如果 Edge 在某些机器上发生崩溃,我们需要检查日志以了解发生了什么情况。 最佳答案 Microsoft Edge 实际上是一个 Windows 进程,因此您应该能够在事件查看器中查看日志。此外,您
我已经将一些测试用例与项目中的单元测试相关联。该项目已构建并复制到共享上的放置位置。当我去运行这些测试时,由于作为这些测试的一部分包含的非托管 DLL 的 System.DllNotFoundExce
我对 asp.net 核心标识中的三个包感到困惑。我不知道彼此之间有什么区别。还有哪些是我们应该使用的? 我在 GitHub 上找到了这个链接,但我没有找到。 Difference between M
在我的 Windows 类库(由 MVC 网站使用)中,我安装了 NugetPackage Microsoft.SqlServer.Types (Spatial)。 现在,我正在使用 ado.net
我有一个简单的 web 应用程序,我在 Teams 中显示为一个应用程序。我已经在 App Studio 中进行了设置,一切都按我的预期工作,一切都很好。它正在显示我的网络应用程序,这就是我想要的。
有什么不同?它们都是业务管理解决方案。他们做的一样吗?一些不同的版本?他们使用同一个平台吗? 动态 Assets 净值 Microsoft Dynamics NAV 2009 is a compreh
如何制定包含非英语字符(例如日耳曼语Umlauts)的Microsoft Graph /myOrganization/users OData查询? 例子: 我的租户中有一个名为“ThomasMülle
我想创建一个类似于乐队附带的星巴克应用程序的应用程序。我想显示条形码。我可以在云端或本地设备上将条形码生成为 JPG 图像,但我需要能够在乐队的屏幕上显示它们。到目前为止,我还没有找到使用 Band
我是一名优秀的程序员,十分优秀!