【发布时间】:2019-06-16 04:55:09
【问题描述】:
我正在尝试从 Java Servlet 获取 XML 文件。我看了很多教程,但没有一个有用。
在我的 index.html 中写了下一个函数
document.addEventListener("DOMContentLoaded", function(){
fetch("AppServlet")
.then(response => console.log(response));
});
并且该获取的响应是......
Response {type: "basic", url: "http://localhost:8080/TW/AppServlet", redirected: false, status: 200, ok: true, …}
body: ReadableStream
bodyUsed: false
headers: Headers {}
ok: true
redirected: false
status: 200
statusText: ""
type: "basic"
url: "http://localhost:8080/TW/AppServlet"
__proto__: Response
但问题出在我的 AppServlet 上。我不知道如何发送一个位于我的 WEB PAGES 目录中的 XML 文件。 有没有简单的方法让它成为可能?
【问题讨论】: