时间:2021-07-01 10:21:17 帮助过:8人阅读
1.客户端源码
test 正在查询...
2.服务器端源码 index_szxx_ajax.php
require("inc/conn.php");?>
$rows=array();
$sqlinfolist="select * from v_info where info_state=1 and user_class=0 order by update_date desc limit 0,9";
$rs_listinfo=$db->query($sqlinfolist);
while(($r=$rs_listinfo->fetch_assoc())==true){
$rows[]=$r;
}
exit("infolist(".json_encode(gbk2utf8($rows)).");");//返回查询的JSON格式结果集并调用回调函数infolist
//服务器端数据库为gb2312编码,转为JSON格式必须为UTF-8编码否则有汉字的单元值会变成NULL;
function gbk2utf8($data){
if(is_array($data)){
return array_map('gbk2utf8', $data);
}
return iconv('gbk','utf-8',$data);
}
?>
以上就介绍了AJAX利用JSONP方式实现跨域数据传递,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。