如何将另一个域的 XSL 应用到 XML
我有一个托管 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 subdomain.mydomain.com 提供服务的 Web 服务器很可能配置为充当指定文件的代理。例如,使用 Apache mod_proxy 以下行就可以解决问题
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