我有一个HTML表,其中包含从该表中显示的数据库中提取的行。我希望用户能够通过单击每行之外的删除超链接或按钮来删除行。
当用户点击每个删除超链接或按钮时,如何在页面上调用JSP函数,以便我可以从数据库中删除该行的条目? <a>
或<button>
标记究竟应该调用JSP函数到底是什么?
请注意,我需要调用JSP函数,而不是JavaScript函数。
答案 0 :(得分:8)
最简单的方法:只需让链接指向JSP页面并将行ID作为参数传递:
<a href="delete.jsp?id=1">delete</a>
在delete.jsp
中(我将明显的请求参数检查/验证放在一边):
<% dao.delete(Long.valueOf(request.getParameter("id"))); %>
然而,这是一个非常poor practice(这仍然是轻描淡写),原因有两个:
修改服务器端数据的HTTP请求不应由GET完成,而应由POST完成。链接是隐式GET。想象一下,当像googlebot这样的网络抓取工具尝试关注所有删除链接时会发生什么。您应该使用<form method="post">
和<button type="submit">
进行删除操作。但是,您可以使用CSS将按钮设置为看起来像链接。编辑只是预加载项目以预编辑编辑表单的链接可以安全地获取。
不鼓励使用 scriptlet (那些<% %>
事物)在JSP中放置业务逻辑(在调用它时使用函数)。您应该使用 Servlet 来控制,预处理和后处理HTTP请求。
由于您在问题中没有说出任何关于servlet的消息,我怀疑您已经在使用scriptlet从数据库加载数据并将其显示在表中。这也应该由servlet完成。
以下是如何完成所有操作的基本启动示例。我不知道表数据代表什么,所以我们以Product
为例。
public class Product {
private Long id;
private String name;
private String description;
private BigDecimal price;
// Add/generate public getters and setters.
}
然后使用JSTL的JSP文件(只需在/WEB-INF/lib
中删除jstl-1.2.jar进行安装)以在带有编辑功能的表格中显示产品链接和每行中的删除按钮:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
...
<form action="products" method="post">
<table>
<c:forEach items="${products}" var="product">
<tr>
<td><c:out value="${fn:escapeXml(product.name)}" /></td>
<td><c:out value="${product.description}" /></td>
<td><fmt:formatNumber value="${product.price}" type="currency" currencyCode="USD" /></td>
<td><a href="${pageContext.request.contextPath}/product?edit=${product.id}">edit</a></td>
<td><button type="submit" name="delete" value="${product.id}">delete</button></td>
</tr>
</c:forEach>
</table>
<a href="${pageContext.request.contextPath}/product">add</a>
</form>
将其命名为products.jsp
并将其放在/WEB-INF
文件夹中,以便URL无法直接访问它(以便最终用户强制为此调用servlet)。
以下是servlet的粗略外观(为简洁省略了验证):
@WebServlet("/products")
public class ProductsServlet extends HttpServlet {
private ProductDAO productDAO; // EJB, plain DAO, etc.
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
List<Product> products = productDAO.list();
request.setAttribute("products", products); // Will be available as ${products} in JSP.
request.getRequestDispatcher("/WEB-INF/products.jsp").forward(request, response);
}
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String delete = request.getParameter("delete");
if (delete != null) { // Is the delete button pressed?
productDAO.delete(Long.valueOf(delete));
}
response.sendRedirect(request.getContextPath() + "/products"); // Refresh page with table.
}
}
以下是/WEB-INF/product.jsp
的添加/修改表单的外观:
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
...
<form action="product" method="post">
<label for="name">Name</label>
<input id="name" name="name" value="${fn:escapeXml(product.name)}" />
<br/>
<label for="description">Description</label>
<input id="description" name="description" value="${fn:escapeXml(product.description)}" />
<br/>
<label for="price">Price</label>
<input id="price" name="price" value="${fn:escapeXml(product.price)}" />
<br/>
<button type="submit" name="save" value="${product.id}">save</button>
</form>
fn:escapeXml()
只是在重新显示编辑数据时阻止XSS attacks,它与<c:out>
完全相同,只更适合在属性中使用。
以下是product
servlet的外观(同样,为简洁省略了转换/验证):
@WebServlet("/product")
public class ProductServlet extends HttpServlet {
private ProductDAO productDAO; // EJB, plain DAO, etc.
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String edit = request.getParameter("edit");
if (edit != null) { // Is the edit link clicked?
Product product = productDAO.find(Long.valueOf(delete));
request.setAttribute("product", product); // Will be available as ${product} in JSP.
}
request.getRequestDispatcher("/WEB-INF/product.jsp").forward(request, response);
}
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String save = request.getParameter("save");
if (save != null) { // Is the save button pressed? (note: if empty then no product ID was supplied, which means that it's "add product".
Product product = (save.isEmpty()) ? new Product() : productDAO.find(Long.valueOf(save));
product.setName(request.getParameter("name"));
product.setDescription(request.getParameter("description"));
product.setPrice(new BigDecimal(request.getParameter("price")));
productDAO.save(product);
}
response.sendRedirect(request.getContextPath() + "/products"); // Go to page with table.
}
}
部署并运行它。您可以按http://example.com/contextname/products打开表格。
另见: