如何在“ React Native Simple Store”中获取数组值?
这是我的代码:
const tryList = [];
store.get('shoppingList').then(res => (tryList = {res}));
console.log(tryList);
输出:
{
"res": [{
"price": 10,
"name": "t-shirt"
}]
}
预期输出:
[{
"price": 10,
"name": "t-shirt"
}]
store.get('shoppingList').then(res => (tryList = {res}));
console.log(tryList)
请参见,当您打印tryList
时,将得到一个对象{"res": [{"price": 10, "name": "t-shirt"}]}
但是您需要获取res
的值,因此对于访问对象属性的方式,您必须执行以下操作。 console.log(tryList.res)
#这会给您预期的结果。