2

我有这个 json 文件,我正在变成一个 json 数组,一切正常,但真正的 json 文件包含更多数据。如何简化此代码可以更改 javascript 或 json 文件。

{
"Subject1":{
    "Biology":{
        "Category":{
            "Cell":{
                "question1":{
                    "que1":"what's....?"
                },
                "question2":{
                    "que2":"what's....?"
                },
                "question3":{
                    "que3": "what's....?"
                }
            },
            "Bactery":{
                "question1":{
                    "que1":"what's....?"
                },
                "question2":{
                    "que2": "what's....?"
                },
                "question3":{
                    "que3": "what's....?"
                }
            }
        }
    }
}

}

这是我将文件 json 转换为 javascript 数组 json 的代码:

var exa = [];
function show() {
    $.getJSON('questions.json', function (json) {
        for (var key in json) {
            if (json.hasOwnProperty(key)) {
                var item = json[key];
                exa.push({
//I want to simplify this part, because the real json file have more questions
                    que1: item.Biology.Category.Cell.question1.que1,
                    que2: item.Biology.Category.Cell.question2.que2,
                    que3: item.Biology.Category.Cell.question3.que3,

                    que11: item.Biology.Category.Bactery.question1.que1,
                    que12: item.Biology.Category.Bactery.question2.que2,
                    que13: item.Biology.Category.Bactery.question3.que3

                });
            }
        }
        //return Books;
        console.log(exa)
    })
}
4

2 回答 2

1

而不是 que1、que2 等,只需将问题放在一个数组中

"Cell": [
    "what's this?",
    "what's that?"
]
于 2013-02-20T01:40:35.853 回答
0

您可以使用json-path和 writeJsonPath.read(json, "$..question");来获取所有问题。您也需要将que[*]文件中的所有内容更改为question

于 2013-02-20T05:18:57.143 回答