解析私有文件夹(WEB-INf)中的xml
我想解析xml。我使用了 jQuery ajax。但它的问题是,正如有人在我的另一篇文章中建议我的那样,我的 xml 位于 WEB-INF 中,默认情况下是私有的。所以我无法通过ajax解析它。那么请建议我使用其他方法来解析 WEB-INf 中的 xml。我需要在 javascript 标签中解析它。
I want to parse xml. I used jQuery ajax for it. But the problem with it as someone suggest me in my other post is my xml is in WEB-INF which is by default private. So I can not parse it through ajax. Then please suggest me some other way to parse my xml which is in WEB-INf. I need to parse it in javascript tag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个访问该 XML 并打印其内容的 Servlet。然后,您可以从 javascript 文件调用该 servlet 并对其进行处理。
如果您必须访问该 xml 文件,那么 WEB-INF 文件夹可能不是该文件的最佳位置。
You can make a servlet that accesses to that XML and prints out its content. Then, you can invoke that servlet from your javascript file and process it.
If you have to reach that xml file, perhaps the WEB-INF folder is not the best place for that file.
这是一个肮脏的解决方案,但它有效
This is a dirty solution, but it works