我试图在我的网络应用程序中实现搜索栏:
<form method="get" action="NewServlet">
<input type="search" />
</form>
当我在此搜索栏中输入内容并按Enter键时,URL会从
更改http://localhost:8084/App-1/tester.jsp
到
http://localhost:8084/App-1/NewServlet?
为什么我在网址中看不到搜索查询参数?
答案 0 :(得分:3)
你必须为你的领域命名:
<input type="search" name="query"/>
这将致电:
http://localhost:8084/App-1/NewServlet?query=...