我使用 nodejs 0.10.12 和 node-postgre 2.2.0
我创建了一个函数,其中包含两个不同的查询,它们执行良好并返回结果。
查询执行后,我想收集两个查询的所有结果并通过 websockets 将它们发送到客户端。
我无法将查询中的值传递给 websocket。在客户端,当我提醒传入数据时,我得到“未定义”。我虽然将变量设置为全局变量,但仍然没有
有任何想法吗?
提前致谢
这是代码
//set all vars as globals, at the start of the doc
var mnm=[]; var name;
//inside the function
//query 1
client.connect();
var query = client.query('SELECT pins.p_name FROM pins WHERE pins.p_id ='+eoid)
query.on("row", function (row, result) {result.addRow(row);});
query.on("end", function (result) {
for (var i=0; i<result.rows.length; i++)
{name = result.rows[0].p_name;}
});
//query 2
var query2 = client.query('SELECT m_name FROM multi WHERE m_pins ='+eoid)
query2.on("row", function (row, result) {result.addRow(row);});
query2.on("end", function (result) {
for (var i=0; i<result.rows.length; i++)
{mnm.push(result.rows[i].m_name);}
client.end();
});
//so , now gather "name" from the first query and "mnm" from the second and send them to client
connection.send(JSON.stringify({name:name , mnm:mnm}));
编辑现在我意识到如果我第一次执行此代码,客户端警报未定义。第二,提醒我选择的上一个对象的数据。如果我单击 object1,我会变得不确定。如果我单击对象 2,我会得到对象 1。请指教