我从 PHP 页面获取的数据如下:
[{
"id": "1",
"name": null,
"startdate": "2012-07-20",
"starttime": "09:53:02",
"enddate": "2012-07-20",
"endtime": "09:54:10",
"duration": "01:00:00",
"feedbacks": [{
"id": "1",
"type": "1",
"content": "cont"
}],
"conditions": [{
"id": "1",
"dev_id": "1",
"mod_id": "2",
"sub_id": "3",
"to_be_compared_value": "1",
"comparison_type": "1"
}],
"actions": [{
"id": "1",
"dev_id": "1",
"mod_id": "1",
"sub_id": "1",
"target_action": "1"
}]
}]
哪种方式可以轻松、高效、优雅地遍历这个对象?直到这次我都使用了这两个。你能告诉我哪一个必须是我的选择,或者你能给我一个替代方案吗?为什么?我有一个正在运行的应用程序版本,我现在正在审查我自己的代码,我想向大家提出一些建议。
提前致谢,
我之前使用的方法:
$.map
for(var i in obj)
还有一个,我将根据这些数据创建一个表。