0

我有从我们的数据库中检索数据集的代码:

var pg = require('pg').native;

// Format: "postgres://YourUserName:YourPassword@localhost:5432/YourDatabase";
var dbUrl = "url hidden";

function testConn(onDone) {
    pg.connect(dbUrl, function(err, client) {
        client.query("SELECT ad FROM alert WHERE ad = 132", function(err, result) {

            console.log("ad is: %d", result.rows.length);
            console.log("ad value is: %d", result.rows[0].ad_id );
            onDone();
        });
    });
}

// Let's call the function
testConn(disconnectAll)

// Disconnect all connections
function disconnectAll() {
    pg.end();
}

这工作得很好,它检索结果并将其显示到终端上。

我想要实现的是让这些结果出现在 html 页面而不是控制台上,我已经开发了前端页面(使用 jquery mobile)并希望数据库值出现在这个页面上而不是控制台。

谁能在正确的道路上指导我这样做?例如,我知道 div 元素可用于隐藏/显示数据,我只需要知道检索结果并将结果显示到诸如 html 页面之类的元素上的最佳方法。

感谢所有帮助赞赏!

4

1 回答 1

1

像这样的东西,但这只是谷歌的副本

  response.writeHead(200, {"Content-Type": "application/json"});
  var otherArray = ["item1", "item2"];
  var otherObject = { item1: "item1val", item2: "item2val" };
  response.write(
    JSON.stringify({ 
      anObject: otherObject, 
      anArray: otherArray, 
      another: "item",
    })
  );
于 2013-02-11T05:51:45.640 回答