Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那将击中doGet方法而不是doPost方法。像这样的锚链接是 HTTP GET 请求。
doGet
doPost
如果您希望发出 POST 请求,则需要使用 POST 方法向 servlet 提交表单。
将您的代码移至doGet代替doPost并尝试。
使用 doGet 方法。a href 将使用 GET 方法。