我想在Lumen中使用json输出做一点服务。
当我运行原始postgis查询时
$parcells = DB::table('parcells')
->select(DB::raw('ST_AsGeoJSON(wkb_geometry)::json as geometry, nr' ))
->where('nr', '=', $id)
->orderBy('id', 'asc')
->get();
json_encode($parcells)
我得到几何属性的数组,其中包含字符串(需要将其解析为有效的json对象)。
有没有办法将这些值作为json对象?