1

我用 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 开发者的 tab network 的响应中看到"{\"error\": \"user-not-found\"}"

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

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

4

1 回答 1

1

在服务器端,您必须使用回调,并且在您的 jsonp 文件的响应中,您需要执行以下操作:

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

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

于 2013-02-21T15:22:40.177 回答