$.ajaxPOST提交数据变为GET

$.ajax({ 
	type: 'POST', 
	url: "http://127.0.0.1:8080/ZqPay", 
	data: {"act_time":"1477360975713",
	"act_system":"android",
	"act_platform_id":"10000",
	"act_unique_id":"00000000-5686-633c-2d83-33390033c587",
	"act_cp_id":"1"}, 
	dataType: "jsonp"});


jsonp不支持POST

JSONP原理是在客户端动态添加了个然后将url指向要请求的地址,script是没有同源策略的

你可能感兴趣的:(jsonp,post,get,ajax)