我在jQuery上使用了一种对象映射
unitPerRestrictions[restriction]= product.quantity.numberOfUnits;
我现在想要的是遍历密钥以提取值并将密钥用于其他业务逻辑。我找不到在jQuery上执行此操作的正确方法 我看到的地图和其他实现不起作用
$.map(list, function(obj, index) {
if(obj.prop2 == "yutu") {
return index;
}
})
答案 0 :(得分:1)
您可以使用jQuery的each函数。
/**
* Value for {@link #densityDpi} for resources that scale to any density (vector drawables).
* {@hide}
*/
public static final int DENSITY_DPI_ANY = 0xfffe;
/**
* Value for {@link #densityDpi} for resources that are not meant to be scaled.
* {@hide}
*/
public static final int DENSITY_DPI_NONE = 0xffff;