jsonp 使用示例

客户端:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<script src="http://img1.tuniucdn.com/j/201406191714/3rd/jquery-1.7.2.min.js"></script>
<!-- <script src="../js/require.js" data-main="../js/main"></script> -->
<script type="text/javascript">

function cjCallback(result){
console.log(result.Name);
}
$.get(‘http://localhost/html/index.php?jsonp_callback=cjCallback‘,function(){},"jsonp");


</script>


</body>
</html>

 

服务器端:

<?php

header(‘Content-Type:text/json;charset=utf-8‘);
$str = array
(
‘Name‘=>‘xiaolou‘,
‘Age‘=>20
);

$jsonencode = json_encode($str);
echo $_GET["jsonp_callback"]."(".$jsonencode.")";

?>

jsonp 使用示例,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。