好的,既然您在第一条评论中添加了一些细节(您应该编辑问题并添加这些),我想我可以回答您的要求。
var http = require('http')
var port = process.env.PORT || 1337;
var get_nosql_data = function(callback){
// do whatever it is here you need to get the data back
// and format it into a json object. pseudocode follows.
// error handling is also needed here, but not relevant to the answer
var db = require('db');
db.getData('some query', function(res){
var data = { name: res.entity[4], class: res.entityclass[4], address: res.entityaddrss[4] };
callback(data);
});
}
http.createServer(function(req, res) {
get_nosql_data(function(data){
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify(data));
});
}).listen(port);
只要您将数据库值放入我在那里的占位符字符串中,您就应该启动并运行。这也应该与 azure 已经为您设置的内容保持一致。
相关的,我强烈建议您查看express - 这将使您编写节点 Web 应用程序的生活变得更加轻松。