XSLT 是否值得投入时间?是否有任何实际的替代方案?
我意识到关于这个主题还有一些其他问题,普遍的共识是使用您选择的语言来操作 XML。然而,这个解决方案不太适合我的情况。
一、项目范围: 我们想要开发独立于平台的电子学习,目前,它是一堆 HTML 页面,但随着它们的成长和发展,它们变得难以维护。 我们已经有大约 30 个模块,每个模块有 10-30 个 HTML 页面,并且这个数量一直在增长。
想法: 拥有一个 XML 文件 + 电子学习模块前的架构,然后生成一些 XSLT 文件,将 XML 处理到电子学习模块中。通过 XSLT 将 XML 转换为 HTML。
为什么: 我们希望能够灵活地轻松重新格式化内容 我意识到 CSS 在这里是一个可行的替代方案,特别是在视觉上改变外观和感觉,但我们可能需要比这更强大的功能,并尽可能重组页面。 如果我们决定以任何方式更改页面布局或功能,我猜更改“共享”XSLT 文件会比更新 HTML 文件更容易。
根据一些“参数”,我们可以输出截然不同的页面布局/结构,超出 CSS 的能力。 XSLT 可以采用 QueryString 参数吗?不确定..
现在,所有这些都必须独立于平台,并且能够“离线”运行,即没有服务器为 HTML 提供动力,因此服务器端技术是不可能的(C#,PHP
) XSLT 还远吗:
- 开销?不太清楚为什么......转换为 HTML 需要计算能力吗?
- 很难学习
- 更好的替代方案
现在,我想确切地知道的是:
- 对于这种“离线”实际上是否有任何可行的替代方案?
- 我是否以正确的方式处理这件事,
- 你们有什么建议或替代方案吗?
编辑: 无论有没有 XSL、CSS 和 JQuery 将是我们解决方案中非常突出的部分 发展。 一般整理(草率的英语!)
I realize there have been a few other questions on this topic, and the general concensus is to use your language of choice to manipulate the XML. However, this solution does not quite fit my circumstances.
Firstly, the scope of the project:
We want to develop platform independent e-learning, currently, its a bunch of HTML pages but as they grow and develop they become hard to maintain.
We already have about 30 modules, with 10-30 HTML pages each, and this is growing all the time.
The idea:
Have an XML file(s) + Schema pre eLearning Module, then produce some XSLT files that process the XML into the eLearning modiles. XML to HTML via XSLT.
Why:
We would like the flexibilty to be able to easily reformat the content
I realize CSS is a viable alternative here, especially to visually alter the look'n'feel but we may need a little more power than this and go as far as restructuring the pages.
If we decide to alter the pages layout or functionality in anyway, im guessing altering the "shared" XSLT files would be easier than updating the HTML files.
Depending on some "parameters" we could output drastically different page layouts/structures, above and beyond what CSS can do.
Can XSLT take QueryString parameters? Not sure..
Now, all this has to be platform independent, and to be able to run "offline" i.e. without a server powering the HTML so server side technologies are out of the question (C#, PHP)
Negatives I've read so far for XSLT:
- Overhead? Not exactly sure why...is it the compute power need to convert to HTML?
- Difficult to learn
- Better alternatives
Now, what I would like to know exactly is:
- Are there actually any viable alternatives for this "offline"?
- Am I going about it in the correct manner
- Do you guys have any advice or alternatives.
EDIT:
With or without XSL, CSS and JQuery will be a very prominent part of the solution we
develop.
General tidy up (sloppy engrish!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为此使用 XSLT 方案是合法的。如果您具备专业知识,XSLT 将会非常强大。
您仍然会使用 CSS 作为您策略的一部分,对吗?更改 XSLT 以一致地输出样式比手动在 30 个模块中完成要好,但是精心规划的 CSS 样式表仍然可以帮助简化事情(提高可维护性和灵活性)。
总结:组织静态 html 页面的布局/修订,独立于平台,灵活分发:是的,从我看来,你有一个很好的策略。您在 XSLT 方面积累的专业知识在将来也将很有用。掌握 XSLT 后,您将真正理解 XML,这将永远有帮助。
Using an XSLT scheme for this is legitimate. XSLT's are powerful if you develop the expertise.
You're still going to use CSS as part of your strategy, right? Changing an XSLT to output styling consistently is better than doing it in 30 modules by hand, but a well-planned CSS stylesheet can still help simplify things (increase maintainability and flexibility).
In summary: To organized the layout/revision of static html pages, platform independent, for flexible distribution: yes, you have a good stategy, from what I can see. And expertise you develop in XSLT will be useful in the future, too. And after mastering XSLT, you'll really understand XML, which will be helpful forever.
XSLT 是在您所描述的情况下用于从 XML 文档生成 HTML 的理想工具。如果您使用 XSLT 生成静态 HTML 页面,那么关于 XSLT 处理开销的常见抱怨(它需要将整个源 XML 文档加载到内存中)实际上并不重要,除非您可能生成数十万个页面。
(事实上,这种抱怨实际上只与源 XML 文档很大的情况有关。如果您已经构建了一个围绕从大型 XML 文档动态生成 HTML 的体系结构,那么选择 XSLT 作为您的技术可能是一个错误,但事实并非如此)这是一个大错误。)
当然,您也应该使用 CSS。
XSLT is an ideal tool to use for generating HTML from XML documents in the circumstances you've described. The common complaint about XSLT's processing overhead - that it requires the entire source XML document to be loaded into memory - is really not relevant if you're using XSLT to generate static HTML pages, unless maybe you're generating hundreds of thousands of them.
(And in fact that complaint is really only relevant in cases where the source XML document is large. If you've built an architecture around dynamically generating HTML from large XML documents, choosing XSLT as your technology may be a mistake, but it is not the big mistake.)
You should of course also use CSS.
将数据与演示文稿分开。
将演示渲染卸载到浏览器,使用 CSS 和 CSS“增强器”,如 SASS、Less 等。
生成严格的 XHTML - 可以使用 CSS 格式化,可以使用 XML 解析器进行解析等。
使用 JQuery 等交互性
XSLT 相当重量级,不会扩展性很好,而 XHTML+XSS+JQuery 很好理解,并且存在很多工具。
Separate your data from your presentation.
Offload presentation rendering to the browsers, use CSS and CSS "enhancers" like SASS, Less, etc.
Generate strict XHTML - can format with CSS, can parse with XML parsers, etc
Use JQuery like for interactivity
XSLT is quite heavyweight and won't scale well, whereas XHTML+XSS+JQuery is very well understood and lots of tools exist.
如果您已经了解 C# 或 VB.NET,请考虑使用 LINQ to XML,代码会更长,但对于非 XSLT 专家来说,编写和维护可能会更轻松。
这一切都取决于您需要多少次 XML 转换,只要 1 或 2 次,我就不会花时间学习 XSLT。
If you already know C# or VB.NET consider using LINQ to XML, the code will be longer, but it may be less pain to write and maintain for a none XSLT expert.
It all come down to how many XML transforms you will needed, just 1 or 2 then I would not spend the time learning XSLT.