にアクセスすることはできません。私は、次のコードを使用してJSONオブジェクトを取得しています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) {
}
I出力は、コンソールウィンドウ内の値を次のようにした場合:
console.log(json);
私は、次を得る:
[Object { token="cdad8422e88787958729e21cce102cb0"}, "success", Object { readyState=4, responseText="{"token":"cdad8422e88787958729e21cce102cb0"}", status=200, more...}]
しかし、これを使用して「トークン」の値を取得しよう:
console.log(json.token);
私はそれはそれでオブジェクトを使用したアレイの「未定義」
ありがとう、YMMD、とてもシンプル! –