1. 程式人生 > >將請求url中包含的主鍵id取出來,進行操作

將請求url中包含的主鍵id取出來,進行操作

1.JSP頁面上書寫樣式

function del(id){

    window.location.href="${pageContext.request.contextPath}/student/delete/"+id;

}

2.在controller中取得url中包含的id資訊

@Controller
@RequestMapping("student")

@RequestMapping(value="/delete/{id}" ,method = RequestMethod.GET)
    public String studentDelete(Model m,HttpSession session,@PathVariable String id

) {

      //方法體

}

總結:使用的訣竅是使用@PathVariable標籤。