- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我相信这真的很简单,我只是漏掉了一些简单的东西,但是......
我有一个主页 (index.html),我想链接到另一个页面,该页面是一个 .xsl 文件(以显示一些 xml 数据)。我正在使用这段代码来做到这一点:
<h1><a href="catalogue_overview.xsl">VIEW CATALOGUE</a></h1>
当我单独打开 .xsl 文件(我使用 Dreamweaver)时,它会正常打开并显示数据(来自 xml 文件)。
当我从 index.html 页面上的链接打开它时,它只显示 <h>
中包含的未格式化文本。和 <p>
标签等。没有格式化,也没有 xml 数据。
我做错了什么?
我是否需要告诉 index.html 文件一些信息以便它知道 .xsl 文件?
我做错了吗?
我正在以同样的方式链接到一个 PHP 文件,这似乎工作正常。
如果有帮助,我会发布我的代码!
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="catalogue_overview.xsl"?>
<catalogue>
<record>
<catId>001</catId>
<title>Fungus</title>
<location>NP</location>
<photographer>Me</photographer>
<equipment>Canon EOS 40D</equipment>
<caption>Small fungus of the genus Fungaroidiae on a log</caption>
<notes>This is a very rare species of fungus</notes>
<date>10/8/2012</date>
<imageUrl>images/IMG_1684.jpg</imageUrl>
</record>
</catalogue>
<?xml version="1.0" encoding="UTF-8"?><!-- DWXMLSource="catalogue.xml" -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="catalogue">
<html>
<head>
<title>Photo Catalogue</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<h1 align="center"> Photo Catalogue</h1>
<h2 align="center"> Catalogue Overview </h2>
<p align="center"> This is an overview of the photo catalogue. It enables the user to have a quick and easy browse through the images and their information.</p>
<hr/>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="catId">
<h2> Catalogue ID: <span style="color:2A588F"><xsl:apply-templates/> </span> </h2>
</xsl:template>
<xsl:template match="title">
<h3> Title: <span style="color:2A588F"><xsl:apply-templates/> </span> </h3>
</xsl:template>
<xsl:template match="location">
<p> Location: <span style="color:2A588F"><xsl:apply-templates/> </span> </p>
</xsl:template>
<xsl:template match="photographer">
<p> Photographer: <span style="color:2A588F"><xsl:apply-templates/> </span> </p>
</xsl:template>
<xsl:template match="equipment">
<p> Equipment: <span style="color:2A588F"><xsl:apply-templates/> </span> </p>
</xsl:template>
<xsl:template match="caption">
<p> Caption: <span style="color:2A588F"><xsl:apply-templates/> </span> </p>
</xsl:template>
<xsl:template match="notes">
<p> Notes: <span style="color:2A588F"><xsl:apply-templates/> </span> </p>
</xsl:template>
<xsl:template match="date">
<p> Date: <span style="color:2A588F"><xsl:apply-templates/> </span> </p>
</xsl:template>
<xsl:template match="imageUrl">
<p>Image:<br/><img src="{.}" width="250"/></p>
<hr/>
</xsl:template>
</xsl:stylesheet>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Photo Catalogue - HOME</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/
</head>
<body>
<div class="container">
<div class="content">
<h1>Photo Catalogue</h1>
<h2>Welcome to the Photo Catalogue</h2>
<p>It is intended to be a simple tool to store you favourite photos for easy viewing. It uses XML to store the image details and this is retrieved, displayed and edited using a combination of XSL and PHP.</p>
<h2>Navigation</h2>
<p>Select the option you would like below to see its functionality...</p>
<h1><a href="catalogue_overview.xsl">VIEW CATALOGUE</a></h1>
<h1><a href="catalogueupdate.php">EDIT CATALOGUE</a></h1>
</div>
</div>
</body>
</html>
希望对你有帮助
注意 .php 文件的链接似乎工作正常。我正在运行 XAMPP。
谢谢
最佳答案
您应该链接到应该呈现其数据的 XML 文件。这意味着在您的 INDEX.HTML 更改中
<h1><a href="catalogue_overview.xsl">VIEW CATALOGUE</a></h1>
到
<h1><a href="catalogue.xml">VIEW CATALOGUE</a></h1>
然后 XML 文件通过
引用 XSL 样式表<?xml-stylesheet type="text/xsl" href="catalogue_overview.xsl"?>
关于html - 从 .HTML 文件链接到 .XSL 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19528769/
我知道这可能看起来像一个愚蠢/新手问题,但我对 XSLT 还很陌生(尽管我开始接受它并了解它的功能)。 什么时候适合使用xsl:if,什么时候适合使用xsl:choose/xsl:when? 当我想要
在根据节点是否存在设置变量后,我尝试输出变量的文字字符串值。我认为条件检查逻辑是正确的。但它没有输出值... su
我目前正试图使用 XSL 将 XML 文档转换为 HTML。 XML 文档使用 namespace ,我对 XSL 并没有太多经验,更不用说 namespace 了。基本上我想做的就是抓取 s:t
你能否在嵌套的 xsl:when 中嵌套 xsl:if,例如:
我正在 W3Schools 上使用 XSLT 代码示例:https://www.w3schools.com/xml/xsl_client.asp 我有这部分代码在 IE 中使用基本的 xslt 处理.
我正在尝试从 XSLT 样式表动态生成 XSLT 文档。原则上这当然有效,但我没有让命名空间工作。我想让生成的 XSLT 元素以“xsl”前缀为前缀: 而不是 我玩过 xsl:element 的
我们客户的要求是提供带圆角的 PDF 表格。我只有 Apache FOP 处理器可供我使用,它不支持圆角属性。它也不支持 float ,因此无法向左和向右 float 圆形图像。 你对如何做到这一点有
我有一个关于 xsl 的问题。我有 1 个巨大的 xsl 文件(+4000 行 :p),我想将文件分成不同的部分。我使用 xsl 文件来映射 BizTalk 中的一些架构,如果我将它分成几部分,它的性
我的 FO 流程有问题,因为在一页上,标题显示在一页的末尾并在之后的页面上继续。如何向 title-element 添加属性,以便标题始终显示在同一页面上,这意味着:没有分页符。 谢谢! /丹尼 最佳
我想知道是否有人可以帮助我或指出正确的方向。我目前有从 XML 文件返回正确的元素有些麻烦。我只是尝试获取我拥有的大型 XML 文件的精简版本,以便输出另一个 XML 文件(不是很多教程都在使用的 H
我想动态创建具有动态名称的变量以供以后在我的转换中使用,但为此我需要动态生成 XSL,然后在同一脚本中运行它。 这只是我正在寻找的粗略伪代码示例。
我正在学习 XML 以及如何使用 XSL 文件。在 XSL 文件中,我发现了以下术语: xsl:template match="/" 这代表什么?我可以用什么代替 /?我可以编写 table 或任何其
是否可以将 xsl: 放到 XSL 样式表中的 XSL 标签? 例如,可以: 输入为: 编辑:样式表中包含 HTML 和 XML 节点。 谢谢,罗斯 最佳答案 实际上,您可以通过将 XSLT(“h
有什么办法不离开后第一 匹配但继续检查其他条件? 最佳答案 我相信这是一个不。正如规范所说: The content of the first, and only the first, xsl:whe
在构建 XSL 文档时,我遇到了以下问题。我想保留原文中的换行符,所以我设置了linefeed-treatment="preserve" .然而,这显然也意味着它保留了文本内容之外和实际 xml 元素
我有一个 XSL 样式表,我需要使用 xsl:function 添加一些自定义字符串操作。但是我在尝试找出在我的文档中放置该函数的位置时遇到了麻烦。 我的 XSL 简化看起来像这样,
我有以下 XML: Picture 1 Picture 2 Picture 3 虽然此 XSL 执行了预期的操作(输出第一张图片的属性):
我希望 column-count="2"只出现在页面的某些部分。 ]>
我正在为我的 XML 内容生成 xsl-fo 文档,然后将此内容传递给将生成 PDF 的第三方 DLL 之一。我需要以 45 度角显示测试。如何实现这一目标? 谢谢 最佳答案 我很确定您不能在纯 XS
在我的情况下,我必须在两个表格行之间提供高达 0.5cm 的空间。我怎样才能做到这一点。 代码:: 我用过了:
我是一名优秀的程序员,十分优秀!