在使用swoft时候发现ajax如果设置headerxmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 后端可以收到如果不设置,默认header是Content-Type:text/plain;charset=UTF-8 后端就接受不到参数
在使用swoft时候发现ajax如果设置headerxmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 后端可以收到如果不设置,默认header是Content-Type:text/plain;charset=UTF-8 后端就接受不到参数
get和post时才有这个跨域和cookie跨域的问题,jsonp因为机制不同,无此问题,但是jsonp数据量有限原生js// 会带上cookie var xmlhttp = new XMLHttpRequest(); xmlhttp.withCredentials = true;jquery ajax$.ajax({ url : rankApi, dataType ...