在前端開發中,經常需要遍歷json數據進行操作。如果json中有多條結果集,我們可以使用for循環來輕松地遍歷這些結果。下面是一段例子:
var result = { "users" : [ { "name" : "張三", "age" : 20, "email" : "zhangsan@example.com" }, { "name" : "李四", "age" : 25, "email" : "lisi@example.com" } ], "orders" : [ { "id" : 1001, "product" : "電視", "price" : 2999 }, { "id" : 1002, "product" : "手機", "price" : 1999 } ] }; for (var i = 0; i< result.users.length; i++) { console.log(result.users[i].name); } for (var i = 0; i< result.orders.length; i++) { console.log(result.orders[i].product); }
在這個例子中,我們定義了一個json對象result,其中包含兩個結果集:users和orders。我們可以使用for循環遍歷每個結果集,并對其進行操作。
在第一個for循環中,我們遍歷了users結果集。對于每個用戶,我們使用console.log輸出了他們的名字。
在第二個for循環中,我們遍歷了orders結果集。對于每個訂單,我們使用console.log輸出了產品名稱。
在實際開發中,我們可能需要對json結果集進行更復雜的操作。但是,使用for循環來遍歷結果集是一個常用的技巧,能夠方便地進行數據處理。