通過ajax從jsp頁面傳輸數據到web層,並從web層返回數據給jsp頁面


 

 

jsp中ajax代碼:
1
$.ajax({ 2 var id = $("#studentid").val();//獲取標簽中的學生id 3 url:'${pageContext.request.contextPath}/student/stu_delStudent.action?studentid='+id, 4 data:'', 5 type:'POST', 6 dataType:'json', 7 async:false, 8 success:function(data){ 9 alert(data.message); 10 } 11 12 });

 

action中的代碼:
1
public class StudentAction extends ActionSupport{ 2 private Student student; 3 public Student getStudent() { 4 return student; 5 } 6 public void setStudent(Student student) { 7 this.student = student; 8 } 9 10 @Resource 11 private StudentService studentService; 12 13 public String delStudent() throws Exception{ 14 //接收請求數據 15 int studentid = ServletActionContext.getRequest().getParameter("studentid"); 16 studentSerivce.delByStudentId(studentid); 17 //創建一個JSON對象 18 JSONObject json = new JSONObject(); 19 json.put(“message",刪除成功");//將返回信息保存在JSON對象中 20 HttpServletResponse response = ServletActionContext.getResponse(); 21 //設置響應編碼格式,防止亂碼 22 response.setContentType("text/html;charset=UTF-8"); 23 //將數據以json格式響應給ajax 24 response.getWriter().write(json.toString()); 25 26 return null; 27 } 28 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM