我正在使用以下代码获取 JSON 对象:
// Check that the token has been updated, then submit the form as required
$.when( $.getJSON(url + 'scripts/json.php'), button).then(function(json, button) {
}
如果我在控制台窗口中输出值如下:
console.log(json);
我得到以下信息:
[Object { token="cdad8422e88787958729e21cce102cb0"}, "success", Object { readyState=4, responseText="{"token":"cdad8422e88787958729e21cce102cb0"}", status=200, more...}]
但是尝试使用以下方法获取“令牌”的值:
console.log(json.token);
我得到“未定义”