jquery ajax asynchronous servlet

get method of ajax

$.ajax({     
	        type: "Get",     
	        url: "/xiangmu/user/preparPayWeixin/result/"+out_trade_no+".action",     
	        contentType: "application/json; charset=utf-8",     
	        dataType: "json",     
	        success: function(data) {
	        	if(data.data == 'success'){
		        	
	        	}
	        },     
	        error: function(err) {     
	        	
	        }
	    });

 Ajax post method

 

$.ajax({     
	        type: "Post",     
	        url: "/xxx/user/preparPayWeixin/result.action",     
	        contentType: "application/json; charset=utf-8",     
	        dataType: "json",
                async: true,//Whether it is synchronized
                data:{Name:"sanmao",Password:"sanmaoword"},
	        success: function(data) {
	        	if(data.data == 'success'){
		        	
		           
	        	}
	        },     
	        error: function(err) {     
	        	
	        }
	    });

 

 servlet side, return json

HttpServletResponse response= getResponse();
		try {
	        //Set the page not to be cached
	        response.setContentType("application/json");
	        response.setHeader("Pragma", "No-cache");
	        response.setHeader("Cache-Control", "no-cache");
	        response.setCharacterEncoding("UTF-8");
	        PrintWriter out= null;
	        out = response.getWriter();
	        out.print("{\"data\":\"success\"}");
	        out.flush();
	        out.close();
	    } catch (IOException e) {
	        e.printStackTrace ();
	    }

 

springmvc端:

get method: the path parameter is sn
@Controller
@RequestMapping("/user/preparPayWeixin")
public class PreparPayNotifyWeixinController extends BaseController{
	//The path parameter is the get method of sn
	@ResponseBody//Return as json
	@RequestMapping(value="result/{sn}",produces = "text/html;charset=UTF-8",method = {RequestMethod.POST, RequestMethod.GET})
	public String getResult(@PathVariable("sn") String sn){
		String re = "{\"data\":\"success\"}";
		
		return re;
	}

 Post method: java receive

@RequestMapping("culFee")
	public @ResponseBody String culFee(Model model,@RequestBody String data){
		//@RequestBody, to receive parameters
		return json form string;
	}

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=327038171&siteId=291194637