我们常见一些网站在做ajax时返回JSON格式的数据:
php输出JSON格式
显然并非所愿。还是字符串,到底怎么实现?其实很简单,只要在php文件头部加入以下代码:
代码如下 | 复制代码 |
header('Content-type: text/json'); |
示例代码:
代码如下 | 复制代码 |
< ?php header('Content-type: text/json'); $fruits = array ( |
先来看jquery
代码如下 | 复制代码 |
$(function(){ $('#send').click(function() { $.getJSON('http://blog.meituo.net/wp-content/uploads/php_return_json/test.js', function(data) { $('#resText').empty(); var html = ''; $.each( data , function(commentIndex, comment) { html += '<div class="comment"><h6>' + comment['username'] + ':</h6><p class="para">' + comment['content'] + '</p></div>'; }) $('#resText').html(html); }) }) }) |
你需要做的就是将数据存储为格式正确的 .json或者.js 文件。以下为示例所传送的json格式的数据
代码如下 | 复制代码 |
[ { "username": "张三", "content": "沙发." }, { "username": "李四", "content": "板凳." }, { "username": "王五", "content": "地板." } ] |
时间: 2024-11-01 08:32:38