Ajax请求json数据
程序员文章站
2022-05-20 09:00:49
...
同域请求json数据
客户端js代码:
View Code
服务端端PHP代码:
function in_goodslist() { $callback = $this->fun->accept('callback', 'G'); $db_table = db_prefix . 'advert'; $db_where = ' WHERE isclass=1 AND atid=6'; $bann_array = array(); $sql = "SELECT * FROM $db_table $db_where ORDER BY pid,adid DESC LIMIT 0,10"; $rs = $this->db->query($sql); while ($rsList = $this->db->fetch_assoc($rs)) { if ($rsList['islink'] == 2 && $rsList['gotoid'] > 0) { $docread = $this->get_documentview($rsList['gotoid']); if ($docread['did'] > 0) $rsList['url'] = $this->get_link('doc', $docread, $lngpack); } if ($rsList['istime'] == 1) { if ($rsList['starttime'] time() && $rsList['endtime'] > time()) { $bann_array[] = $rsList; } } else { $bann_array[] = $rsList; } } $json = json_encode($bann_array); //$json = $bann_array; echo $callback."($json)"; }View Code
跨域请求json数据
客户端js代码:
View Code
服务端php代码:
function in_goodslist() { $callback = $this->fun->accept('callback', 'G');//GET 封装 $db_table = db_prefix . 'advert'; $db_where = ' WHERE isclass=1 AND atid=6'; $bann_array = array(); $sql = "SELECT * FROM $db_table $db_where ORDER BY pid,adid DESC LIMIT 0,10"; $rs = $this->db->query($sql); while ($rsList = $this->db->fetch_assoc($rs)) { if ($rsList['islink'] == 2 && $rsList['gotoid'] > 0) { $docread = $this->get_documentview($rsList['gotoid']); if ($docread['did'] > 0) $rsList['url'] = $this->get_link('doc', $docread, $lngpack); } if ($rsList['istime'] == 1) { if ($rsList['starttime'] time() && $rsList['endtime'] > time()) { $bann_array[] = $rsList; } } else { $bann_array[] = $rsList; } } $json = json_encode($bann_array); echo $callback."($json)"; }View Code
以上就介绍了Ajax请求json数据,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: rman连接本地、远程数据库方法解析
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论