0

私はこのjsonを持っています

{
    "3": {
        "builderName": "All Branches",
        "currentStep": {
            "eta": 46.228333592710214,
            "expectations": [
                [
                    "output",
                    1519065,
                    1565397.0
                ]
            ],

currentStep からキーと値を取得したい。エータと期待のように。

$.each(obj, function (key, value) {
    $.each(value.currentStep, function (key, value) {
       console.log(value.eta); // this returns undefined            
    });
});
4

2 に答える 2