发送jsonp请求phonegap时捕获响应

时间:2013-02-21 15:18:58

标签: javascript ajax node.js cordova jsonp

我通过phonegap写申请 服务器端我是由nodejs写的

exports.login = function(request, response) {
    var keys = Object.keys(request.query);
    request.body= JSON.parse(keys[1]);
    Accounts.findOne({
        name : request.body.name
    }, function(err, docs) {
        if (!docs) {
            response.json('{"error": "user-not-found"}');
        } else {
            console.log("docs: ", docs);
            Accounts.validatePassword(request.body.password, docs['hashedPass'], docs['salt'], function(error, res) {
                if (error) {
                    response.json(error);
                }
                if (res) {
                    generateToken(request.body.name, request.body.device, function(res) {
                        if (res) {
                            response.json('{"token": "' + res + '"}');
                        } else {
                            response.json('{"error": "cant-create-token"}');
                        }
                    });
                } else {
                    response.json('{"error": "invalid-password"}');
                }
            });

        }
    })
}

Phonegap:我写函数登录

function LoginUser(info)
{
    var varUrl=server+"/auth/login";
    $.ajax({
            url:varUrl,
            type:"GET",
            contentType:"application/json",
            headers: {
                            Accept:"application/json",
                            "Access-Control-Allow-Origin": "*"
                        },              
            data:info,              
            dataType:"jsonp", 
            success:function(data)
                {
                    console.log("HERE");
                    console.log(data);                      
                },
            error: function(err){
                console.log(err);
            }


    });
}

我要求它会这样http://localhost:3000/auth/login?callback=jQuery161014894121675752103_1361459462241&{%22name%22:%22fdfdfd%22,%22password%22:%22fdfdfdfd%22}&_=1361459615743

当我在Chrome开发人员的标签网络响应中看到"{\"error\": \"user-not-found\"}"

但我无法在上面的function LoginUser(info)中抓住这个回复 如何获取它,因为在控制台中它打印error: function(err){ console.log(err); }

我不知道为什么。 你能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

在服务器端,您必须使用回调并在您的响应中 你需要做的jsonp文件:

jQuery161014894121675752103_1361459462241({"error": "user-not-found"})

函数名称来自jsonp请求中的回调变量。 导致jsonp请求只是在您的站点中“包含”一个脚本标记,它可以执行js(基本上)。