摘要: $.post()方法是jquery本身对ajax的一个简单封装,其效果等价于: $.ajax({ url:url, type:"POST", data:data, dataType:dataType, success:function(data){ //success } }); $.post()函 阅读全文
posted @ 2018-09-04 20:39 沫小淘 阅读(9367) 评论(0) 推荐(0) 编辑
摘要: @RequestParam 用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是application/x-www-form-urlencoded类型) Req 阅读全文
posted @ 2018-09-04 20:28 沫小淘 阅读(1336) 评论(0) 推荐(0) 编辑