在"使用CEF的JSON解析功能"中介绍了使用CefParseJson方法,与之相应的另一个CefWriteJson方法,能够用来生成JSON串(或二进制),其函数原型例如以下: // Generates a JSON string from the specified root |node| which should be a // dictionary or list value. Returns an empty string on failure. This method //…
第一步,先去数据库查询类别数据,然后交给生成json数据的函数处理,代码如下: /*生成类别JSON数据*/ public function wirteJson(){ $dataInfo = \think\Db::query("select id as v,name as n,pid from think_pro_category"); $data = $this->getCategoryJson($dataInfo); return $data; } 第二步,将查询出来的类别数…
//build an info object and convert to json NSDictionary* info = [NSDictionary dictionaryWithObjectsAndKeys: [loan objectForKey:@"name"], @"who", [(NSDictionary*)[loan objectForKey:@"location"] objectForKey:@"country"…