Heim >Backend-Entwicklung >PHP-Tutorial > PHP 怎么获取jsonp传的数组

PHP 怎么获取jsonp传的数组

WBOY
WBOYOriginal
2016-06-13 12:30:10945Durchsuche

PHP 如何获取jsonp传的数组

本帖最后由 zl2727 于 2014-01-09 14:19:55 编辑
  var urlstr = "{GID:'" + $("#hogid").val() + "',Name:'" + $("#txtName").val() + "',ProvinceID:'" + $("#ProvinceID").val() + "',CityID:'" + $("#CityID").val() + "',AreaID:'" + $("#AreaID").val() + "',Moblie:'" + $("#txtMobile").val() + "',Address:'" + $("#txtAddress").val() + "',PayType:'" + itemvalue + "'}";<br />
    $.ajax({<br />
        url: "http://www.xxx.com/car.php",<br />
        type: "POST",<br />
        data: urlstr,<br />
		async:false,<br />
		dataType:'jsonp',<br />
		jsonp: "callback",<br />
		jsonpCallback:"getgoods", <br />
        success: function (data) {<br />
          alert(data.res);<br />
        },<br />
        error: function (err) {<br />
            alert("网络加载繁忙,请刷新!");<br />
        }<br />
    });


如何获取到 data 
我的PHP文件中
$urlstr = $_POST;<br />
echo $urlstr.Name;<br />

什么都没有  应该如何编写?
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn