这类似于Stream data with Node.js,但我觉得问题没有得到充分回答。
我正在尝试使用jQuery ajax调用(get,load,getJSON)在页面和node.js服务器之间传输数据。我可以从我的浏览器中查看地址并查看“Hello World!”,但是当我从我的页面尝试此操作时,它会失败并显示我没有得到任何回复。我设置了一个简单的测试页面和hello world示例来测试它:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>get test</title>
</head>
<body>
<h1>Get Test</h1>
<div id="test"></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js"></script>
<script>
$(document).ready(function() {
//alert($('h1').length);
$('#test').load('http://192.168.1.103:8124/');
//$.get('http://192.168.1.103:8124/', function(data) {
// alert(data);
//});
});
</script>
</body>
</html>
和
var http = require('http');
http.createServer(function (req, res) {
console.log('request received');
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8124);
答案 0 :(得分:86)
如果您的简单测试页面位于其他协议/域/端口而不是您的hello world node.js示例,那么您正在执行跨域请求并违反same origin policy因此您的jQuery ajax调用(获取和加载)是默默地失败了。要使此跨域工作,您应该使用基于JSONP的格式。例如node.js代码:
var http = require('http');
http.createServer(function (req, res) {
console.log('request received');
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('_testcb(\'{"message": "Hello world!"}\')');
}).listen(8124);
和客户端JavaScript / jQuery:
$(document).ready(function() {
$.ajax({
url: 'http://192.168.1.103:8124/',
dataType: "jsonp",
jsonpCallback: "_testcb",
cache: false,
timeout: 5000,
success: function(data) {
$("#test").append(data);
},
error: function(jqXHR, textStatus, errorThrown) {
alert('error ' + textStatus + " " + errorThrown);
}
});
});
还有其他方法可以实现这一点,例如设置reverse proxy或使用express等框架完全构建您的Web应用程序。
答案 1 :(得分:7)
感谢yojimbo的回答。要添加到他的示例中,我想使用jquery方法$ .getJSON,它在查询字符串中放置一个随机回调,所以我也想在Node.js中解析它。我还想传回一个对象并使用stringify函数。
这是我的客户端代码。
$.getJSON("http://localhost:8124/dummy?action=dostuff&callback=?",
function(data){
alert(data);
},
function(jqXHR, textStatus, errorThrown) {
alert('error ' + textStatus + " " + errorThrown);
});
这是我的服务器端Node.js
var http = require('http');
var querystring = require('querystring');
var url = require('url');
http.createServer(function (req, res) {
//grab the callback from the query string
var pquery = querystring.parse(url.parse(req.url).query);
var callback = (pquery.callback ? pquery.callback : '');
//we probably want to send an object back in response to the request
var returnObject = {message: "Hello World!"};
var returnObjectString = JSON.stringify(returnObject);
//push back the response including the callback shenanigans
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end(callback + '(\'' + returnObjectString + '\')');
}).listen(8124);
答案 2 :(得分:3)
我想你的html页面托管在不同的端口上。大多数浏览器中的相同原始策略requires,加载的文件与加载文件位于同一端口上。
答案 3 :(得分:1)
在服务器端使用以下内容:
http.createServer(function (request, response) {
if (request.headers['x-requested-with'] == 'XMLHttpRequest') {
// handle async request
var u = url.parse(request.url, true); //not needed
response.writeHead(200, {'content-type':'text/json'})
response.end(JSON.stringify(some_array.slice(1, 10))) //send elements 1 to 10
} else {
// handle sync request (by server index.html)
if (request.url == '/') {
response.writeHead(200, {'content-type': 'text/html'})
util.pump(fs.createReadStream('index.html'), response)
}
else
{
// 404 error
}
}
}).listen(31337)