如何将另一个域的 XSL 应用到 XML

发布于 2024-12-26 05:07:53 字数 228 浏览 0 评论 0原文

我有一个托管 www.mydomain.com/myxslt.xls 的 XSLT 文件,我想将其应用于 subdomain.mydomain.com 上显示的 XML。浏览器中的跨站点脚本限制禁止我从其他域加载 XSLT。由于各种原因,不希望将 XSLT 托管在子域上。

如何导入 XSLT 服务器端并渲染它并在子域上显示它?我可以用 JavaScript 做到这一点吗?

I have an XSLT file hosted www.mydomain.com/myxslt.xls which I want to apply to XML displayed on subdomain.mydomain.com. The cross-site scripting restrictions in the browsers prohibit me from loading the XSLT from the other domain. For various reasons, it is not desirable to host the XSLT on the sub-domain.

How do I go about importing the XSLT server side and rendering it and displaying it on the sub-domain? Can I do this with JavaScript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心在旅行 2025-01-02 05:07:53

为 subdomain.mydomain.com 提供服务的 Web 服务器很可能配置为充当指定文件的代理。例如,使用 Apache mod_proxy 以下行就可以解决问题

ProxyPass /myxslt.xls http://www.mydomain.com/myxslt.xls

Your web server serving subdomain.mydomain.com can most likely be configured to act as a proxy for the specified file. E.g. using Apache mod_proxy the following line would do the trick

ProxyPass /myxslt.xls http://www.mydomain.com/myxslt.xls
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文