将jquery ajax请求设置为async = false不起作用

时间:2012-07-07 19:38:57

标签: javascript ajax jquery

我试图开始使用谷歌钱包,并通过ajax请求生成jwt令牌。

当用户点击购买按钮时,它会触发purchase()函数,该函数会使用get_jwt_token_for_user()函数发送一些数据以获取jwt。我已将ajax请求设置为非异步,以确保将jwt发送到Google付款处理程序。

然而,在get_jwt_token_for_user()函数返回jwt之前,purchase()函数似乎仍在继续。日志输出显示在从get_jwt_token_for_user()函数将jwt打印到控制台之前,数字1和2将打印到控制台。

function get_jwt_token_for_user(the_key)
{
    var JwtTokenURL = "/get_jwt_token";
    var the_user_name = $('#user_name').val();
    var the_user_email = $('#user_email').val();
    var the_user_number = $('#user_number').val();
    $.ajax({ 
        type: "Get",
        url: JwtTokenURL,
        data: {user_number : the_user_number, user_name : the_user_name, user_email : the_user_email, the_d_key : the_key},
        async: false,
        success: function(result) {
            var myObject = JSON.parse(result);
            console.log(myObject.jwt_token);
            return myObject.jwt_token
        },
        failure: function(fail){ alert(fail); }
     });
}

function purchase(the_key)
{
    console.log("1");
    var jwt_token = get_jwt_token_for_user(the_key);
    console.log("2");
    if (jwt_token !== "")
    {
        console.log(jwt_token);
        goog.payments.inapp.buy({
            parameters: {},
            'jwt'     : jwt_token,
            'success' : successHandler,
            'failure' : failureHandler
          });
    }
}

我知道如何确保ajax请求在buy()函数没有jwt值之前返回数据?

1 个答案:

答案 0 :(得分:5)

你的get_jwt_token_for_user函数没有返回任何内容,你需要更像这样的东西:

function get_jwt_token_for_user(the_key) {
    //...
    var myObject;
    $.ajax({ 
        //...
        success: function(result) {
            myObject = JSON.parse(result);
        },
        //...
     });
     return myObject ? myObject.jwt_token : '';
}

success回调中返回一些内容并不会导致$.ajax返回该值,并且JavaScript函数返回其最后一个表达式的值,您<如果您希望函数返回某些内容,则必须必须包含显式return

您还应该尽快停止使用async:false,它是用户敌对的it is going away。您的代码看起来应该更像这样:

function get_jwt_token_for_user(the_key, callback) {
    //...
    $.ajax({ 
        type: "Get",
        url: JwtTokenURL,
        data: {user_number : the_user_number, user_name : the_user_name, user_email : the_user_email, the_d_key : the_key},
        success: function(result) {
            var myObject = JSON.parse(result);
            callback(myObject.jwt_token);
        },
        failure: function(fail){ alert(fail); }
     });
}

function purchase(the_key) {
    get_jwt_token_for_user(the_key, function(jwt_token) {
        if (jwt_token !== "") {
            //...
        }
    });
}