我有一个json对象如下:
[{"Id":"1","Item":"Apples","PricePerKilo":"10.00"},
{"Id":"3","Item":"Oranges","PricePerKilo":"12.00"}]
我希望得到 ID 为 3 的 PricePerKilo。
var fruits = jQuery("#products").data('productData');
顺便说一下,fruits 持有 json 对象...
我将解释我想在 SQL 中做什么,因为我发现这种方式更容易解释
SELECT PricePerKilo From fruits WHERE Id = 3 LIMIT 1