我是Java的新手,并遇到以下问题:

console.log(results1[1]);


打印:[ { product_identification_category_id: 1, title: 'Title1' } ]

console.log(results1[1].product_identification_category_id);


打印未定义。我期望这能打印1。

我误会了吗?我究竟做错了什么?

谢谢!

最佳答案

在我看来,results1[1]本身就是一个数组(只有一个条目)。所以你想要

console.log(results1[1][0].product_identification_category_id);
// The new bit --------^^^

关于javascript - javascript数组说明,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24351454/

10-09 22:25