我正在尝试开始使用谷歌钱包并通过 ajax 请求生成 jwt 令牌。
当用户点击购买按钮时,它会触发 purchase() 函数,该函数又会发送一些数据以使用 get_jwt_token_for_user() 函数获取 jwt。我已将 ajax 请求设置为非异步,以确保将 jwt 发送到谷歌支付处理程序。
但是,在 get_jwt_token_for_user() 函数返回 jwt 之前,purchase() 函数似乎会继续。日志输出显示数字 1 和 2 在 jwt 从 get_jwt_token_for_user() 函数打印到控制台之前打印到控制台。
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
});
}
}
知道我能做些什么来确保在 purchase() 函数在没有 jwt 值的情况下继续执行之前,ajax 请求已经返回数据吗?