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.
我正在尝试做一个系统,将用户输入表单的数据保存在页面jsp中。然而没有奏效!例如:
用户输入表单中的数据:
<input type="text" name="title" id="title" />
用户在表单中输入的数据,会保存在页面jsp中:
<% String title = request.getParameter("title") %>
数据将被保存。但是,当我更新页面时,数据丢失了。我想做一个这样的评论系统。
如果要在页面中保存数据,则只需将其放入 value 属性中即可。试试这个 JSP。
<html> <body> <form> <input type="text" name="title" id="title" value="${param.title}"/> <input type="submit"/> </form> </body> </html>