我正在使用 postgreSQL 9.1、postGIS 2.0、nodejs 0.10.12 和 node 的 pg 模块的最新版本。
我在服务器端使用 websockets。我有两个功能。根据来自用户的数据,我调用正确的函数。
第一个功能很简单SELECT
,工作正常。
第二个尝试找到给定几何图形的 5 个最近邻居(它可以是点、线或多边形)。不工作。我为最近邻查询尝试了不同的语法,但仍然没有。
有什么问题?查询?我在想也许 pg 模块不支持该ST_DWithin
功能。
这是最近邻函数的代码
function checkMapIn(je){
var conString = "pg://username:password@localhost:5432/myDB";
var client = new pg.Client(conString);
client.connect();
//je came from client, is a geometry he just inserted in the map
var query = client.query('SELECT pins.p_name FROM pins ORDER BY pins.p_geom <-> '+je+' LIMIT 5')
//alternative syntax I tried
//SELECT pins.p_name FROM pins INNER JOIN pins ON ST_DWithin('+je+', pins.p_geom, 1000) LIMIT 5
//SELECT pins.p_name FROM pins WHERE ST_DWithin('+je+', pins.p_geom, 1000) LIMIT 5
query.on("row", function (row, result) {
result.addRow(row);});
query.on("end", function (result) {
console.log(JSON.stringify(result.rows, null, " "));
for (var i=0; i<result.rows.length; i++){
connection.send(result.rows[i].p_name+'</br>')
}
client.end();
});
}
这就是我得到的错误,无论我如何编辑查询的 synatx
events.js:72
throw er; // Unhandled 'error' event
^
error: syntax error at or near "["
at Connection.parsE (C:\Program Files (x86)\nodejs\node_modules\pg\lib\connection.js:526:11)
at Connection.parseMessage (C:\Program Files (x86)\nodejs\node_modules\pg\lib\connection.js:371:17)
at Socket.(anonymous) (C:\Program Files (x86)\nodejs\node_modules\pg\lib\connection.js:86:20)
at Socket.EventEmitter.emit (events.js:95:17)
at Socket.(anonymous) (_stream_readable.js:736:14)
at Socket.EventEmitter.emit (events.js:92:17)
at emitReadable_ (_stream_readable.js:408:10)
at emitReadable (_stream_readable.js:404:5)
at readableAddChunk (_stream_readable.js:156:9)
at Spcket.Readable.push (_stream_readable.js:127:10)
有什么建议吗?提示?
提前致谢
斯莱文
编辑
这是“je”变量的示例值,正如“badsyntax”所要求的那样。
[object Object]
如果我设置,我会得到这个connection.send('</br>'+je+'</br>')
。
此外,这是我从客户端的 openlayers 获得的以及我发送到服务器的内容。
POINT(2332239.3475 4729773.7440625)
奇怪...在客户端,我使用 openlayers 来获取刚刚插入地图的要素的几何形状。