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.
我得到一个从 AJAX 请求返回的对象数组,格式如下:
[Object { M_ID_mt="9"}, Object { M_ID_mt="12"}, 5 more...]
但是因为标识符(M_ID_mt在这个例子中)会根据返回的数据而改变,我想在循环中解析这个数组而不使用标识符。
M_ID_mt
有没有办法从每个对象中提取“数据”(9, 12, ...)而不使用标识符取消引用?
9
12
如果你真的收到 JSON,比如
[{"M_ID_mt":"9"},{"M_ID_mt":"12"}]
有解析/查询 json 的库,可能是一个可以完成这项工作的库: