空這是我的jsp:請求paremeters似乎是在servlet的
<form method='post' action='/controller'>
<div >
<input class="form-control" type="text" id="name-input-field" pattern="[A-Z][a-z]+([ -][A-Z][a-z]+)*" required >
</div>
</form>
這是我的servlet:
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
req.getParameter("name-input-field");//appears null
}
請幫我看看這個錯誤。
首先,使用瀏覽器的調試工具給我請檢查正在發送的請求。 (如果可能的話,使用類似Spring MVC的東西,而不是手工處理servlet - 這使得生活變得非常容易,特別是在Spring Boot中。) – chrylis