例如假设客户端我有一个 JavaScript 函数
function getLocation() {
var latitude = ...;
var longitude = ...;
}
使用对 Google 或类似的函数调用来检索坐标。如何将此信息传输到我的 Node.js 服务器?
例如假设客户端我有一个 JavaScript 函数
function getLocation() {
var latitude = ...;
var longitude = ...;
}
使用对 Google 或类似的函数调用来检索坐标。如何将此信息传输到我的 Node.js 服务器?
最简单的方法?设置Express并让您的客户端代码通过 Ajax 进行通信(例如,使用 jQuery)。
(function() {
var app, express;
express = require("express");
app = express.createServer();
app.configure(function() {
app.use(express.bodyParser());
return app.use(app.router);
});
app.configure("development", function() {
return app.use(express.errorHandler({
dumpExceptions: true,
showStack: true
}));
});
app.post("/locations", function(request, response) {
var latitude, longitude;
latitude = request.body.latitude;
longitude = request.body.longitude;
return response.json({}, 200);
});
app.listen(80);
}).call(this);
在客户端,您可以这样称呼它:
var latitude = 0
, longitude = 0; // Set from form
$.post({
url: "http://localhost/locations",
data: {latitude: latitude, longitude: longitude},
success: function (data) {
console.log("Success");
},
dataType: "json"
});
请注意,此代码只是一个示例;您必须解决错误处理等问题。
希望有帮助。
通过发出 HTTP 请求,就像在 Web 应用程序中处理任何其他服务器端程序一样。
您可以使用XMLHttpRequest 对象,或通过生成一个<form>
然后提交它,或各种其他方法来做到这一点。
如果您需要(软)实时功能,我建议使用Socket.io 库。使用套接字,节点还可以将数据推送到您的客户端脚本。
我认为NowJS将非常适合您。例子:
// On the Node.JS server
var nowjs = require("now");
var everyone = nowjs.initialize(httpServer);
everyone.now.getServerInfo = function(callback){
db.doQuery(callback);
}
// In the browser
<script>
now.getServerInfo(function(data){
// data contains the query results
});
</script>
您可以将变量和函数放在一个公共名称空间(即now
对象)中,从客户端到服务器,反之亦然。
我认为您需要RPC。节点模块部分还有一个涵盖 RPC 的部分。我认为你应该看看DNode。看看浏览器部分的 DNode。