php如何返回json格式的数据给jquery

json格式的数据是我们在应用开发中一直会使用到的数据,如与jquery打交到或与api打交都会使用到json数据,那么php如何返回json格式的数据给jquery呢,下面我来给各位同学介绍介绍。

在jquery中操作json数据我们直接 $.parsejson(returnstring ) 了

代码如下

$(function(){
$(‘#send’).click(function() {
$.getjson(‘test.js’, function(data) {
$(‘#restext’).empty();
var html = ”;
$.each( data , function(commentindex, comment) {
html += ‘

‘ + comment[‘username’] + ‘:

‘ + comment[‘content’] + ‘

‘;
})
$(‘#restext’).html(html);
})
})
})

你需要做的就是将数据存储为格式正确的 .json或者.js 文件。以下为示例所传送的json格式的数据

代码如下

[
{
“username”: “张三”,
“content”: “沙发.”
},
{
“username”: “李四”,
“content”: “板凳.”
},
{
“username”: “王五”,
“content”: “地板.”
}
]

上面讲到到的json数据是固定了,我们用php如何返回json数据呢

php输出json格式方法

页面中加入

header(‘content-type: text/json’);

这个头就是告知此文件输出类型为 json,这种形式我们见的最多的是验证码——php输出验证图片,有时php可以输出css文件,js文件等做一些有趣的事情。好的,我们测试一下吧

代码如下

< ?php header('content-type: text/json');

$fruits = array (
“fruits” => array(“a” => “orange”, “b” => “banana”, “c” => “apple”),
“numbers” => array(1, 2, 3, 4, 5, 6),
“holes” => array(“first”, 5 => “second”, “third”)
);
echo json_encode($fruits);
?>

实例

从数据库读取的数据生成json格式

代码如下

第一php网提供的教程–将数据库读取的数据生成json格式

Posted in 未分类

发表评论