我正在尝试使用 GeoAlchemy 和 PostGres 传递来自名为 db.session.query(func.ST_AsGeoJSON(self.geometry)).first() 的函数的 GeoJson 响应。打印时显示:
('{"type":"Polygon","coordinates":[[[-38.4105,-12.9232],[-38.4205,-12.9232],[-38.4305,-12.9232],[-38.4505,-12.9232],[-38.4105,-12.9232]]]}',)
但是当我尝试将此添加到其他 Json 时,就像这样:
geojson = {
'geometry': db.session.query(func.ST_AsGeoJSON(self.geometry)).first(),
'type': 'Feature',
'properties': {
'Nome': 'Default',
'Qualidade': 'Default'
},
}
该网站的响应充满了反斜杠:
我需要正确地将几何响应传递给geojson。