Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法访问对象progress的属性data。我曾经debugger停止应用程序并检查是否data定义了对象。这是控制台的屏幕截图,完全没有意义。
progress
data
debugger
data是一个Array。你想要data[0].progress。
Array
data[0].progress
数据是一个数组,在控制台中它有括号就可以证明这一点。
为了访问其中的对象,您需要使用数组索引表示法,如下所示:
data[0].progress //0