Extjs Ajax POST

前端之家收集整理的这篇文章主要介绍了Extjs Ajax POST前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Ext.Ajax.request({
url : 'rest/rent/reset',
method:'POST',
params:{
event : key,
status : value
},
success:function(response){
},
failure:function(){
}

});


@Path("/reset") @POST @Consumes(MediaType.APPLICATION_FORM_URLENCODED) /* 取消按钮,重置event */ public ExtJSResponse reset(final @FormParam("eventID") String eventID,final @FormParam("status") Integer status) throws Exception { return enService.resetEvent(eventID,status); }

原文链接:https://www.f2er.com/ajax/164357.html

猜你在找的Ajax相关文章