前端
$.ajax({ cache : true, type : "POST", url : "ComCamera/command/", data :{"pan" : $("#up").val()}, dataType : "json", async : false, success : function(msg) { if (msg == "s"){ alert("success!"); } } });
服务端接参
@Post("/command") public String comCamera(int pan, int tilt){}