我正在编写一个带有codeigniter的Web API,这是我的结果之一:
http://manage.pineconetassel.com/index.php/api/v1/colors2
它看起来很接近,但是如果我把它喂入hurl.it(GET测试服务,抱歉不能在这里发帖)
无法正确解析。它显示“颜色”,但没有值
要进行比较,可以通过hurl.it正确解析以下JSON http://www.w3schools.com//website/Customers_JSON.php
我的代码出了什么问题?生成此API的代码如下:
模型:
public function get_colors2(){
$q = $this->publicDB->select('color')->get('car_colors');
if ($q->num_rows > 0) {
return $q->result_array();
} else {return FALSE;}
}
我正在使用Phil Sturgeon的RESTful服务器实现
控制器:
function colors2_get()
{
$result = $this->api_model->get_colors2();
if ($result) {
$this->response($result,200);
} else {$this->response(NULL,404);}
}