如何在node.js中使用jQuery ajax调用


71

这类似于使用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);

1
我们需要知道正在加载的文件中的内容-加载的文件中的代码如何执行?
mattsven 2011年

Answers:


86

如果您的简单测试页位于hello world node.js示例之外的其他协议/域/端口上,则说明您正在执行跨域请求并且违反了相同的原始策略,因此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);
        }
    });
});

还有其他方法可以使此工作正常进行,例如,通过设置反向代理或完全使用express这样的框架来构建Web应用程序。


太好了,谢谢!如您的示例中所述,我将其设置为使用jsonp,并且运行良好。
briznad 2011年

yojimbo很好的答案,这真的帮助了我。我已经发布了一些额外的答案。
Michael Dausmann 2011年

如何使用express构建nodejs应用程序将解决跨域请求问题?
愤怒的猕猴桃

@runrunforest:如果应用程序完全基于express构建,则您可能不需要发出跨域请求,因为所有内容都将来自同一来源。
yojimbo87 2011年

1
@Petsoukos通过几个模块(例如socket.io也支持其他传输),可以在node.js中进行长轮询(作为基于Web的推送技术),但是直接轮询MySQL效率极低。我建议看一些发布/订阅机制,例如可用于此目的的redis。
yojimbo87 2011年

8

感谢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);

您的代码效果很好。请注意,您将收到以文本/纯文字为内容类型的mime错误。将内容类型更改为application / javascript可解决此问题。
支付

3

我想您的HTML页面托管在其他端口上。在大多数浏览器中,相同的源策略要求加载的文件与加载的文件位于同一端口上。


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)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.