Skip to content

Commit c056e24

Browse files
committedJul 6, 2017
change Content-type
edit Content-type
1 parent f7ee98a commit c056e24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎ajax(over)/ajax.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ function ajax(type,url,data,async,cache=true){
2323

2424
cache = null;
2525
xhr.open(type,url,async);
26-
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
26+
xhr.setRequestHeader("Content-type","application/json");
2727
xhr.send();
2828

2929
}else if(type==='POST'){
3030
if(url.indexOf("?")>-1&&cache){
3131
url += '&'+(new Date().getTime()+"=1");
3232
}
3333
xhr.open(type,url,async);
34-
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
34+
xhr.setRequestHeader("Content-type","application/json");
3535
xhr.send(JSON.stringify(data));
3636
}else{
3737
reject('error type')

0 commit comments

Comments
 (0)
Please sign in to comment.