我有这个从表中选择列,我想将它传递给Jquery ajax fn。
我正在使用下面的代码但是获得了无效的json
我的表有三个列ID,名称和城市,但我没有选择城市
这是我的json回应
["{id:1,name\":\"JOHN\",\"city\":\"null\"}"
,"{\"id\":2,\"name\":\"MICHEAL\,\"city\":\"null\"}"]
答案 0 :(得分:1)
可悲的是,当你调用all_to_json()
时,当前稳定的(1.8.1)WanWizard数据映射器DMZ_Json类会对字段进行双重编码。这个问题似乎已修复in the develop branch。您可以通过以下多种方式解决此问题:
to_json()
并使用字符串操作创建json数组:$my_objects = (new Model)->get();
$results = array();
foreach ($my_objects as $o) {
$results[] = $o->to_json();
}
// building a json array from the strings returned by $o->to_json()
print '['.join(',', $results).']';
all_to_array
方法和结果为的json_encode:$my_object_arrays = (new Model)->get()->all_to_array();
print json_encode($my_object_arrays);