1
在Rails中,如何訪問此json的各個元素?我用ruby的.to_json方法解析它。 json = CSV.parse(csv).to_json
。 這裏返回什麼:使用方括號訪問Json
[
[
"id",
"subject"
],
[
"1",
"Economics"
],
[
"2",
"General Paper"
],
[
"3",
"History"
],
[
"4",
"Geography"
],
[
"5",
"Mathematics"
],
[
"6",
"Chemistry"
],
[
"7",
"Biology"
],
[
"8",
"Physics"
]
]
嘗試訪問json[0][1]
或json[0]
回報"["
我有一種感覺它與方括號做的,但我敢肯定有辦法來訪問它(它看起來像陣列中的數組,我的訪問方式應該工作)