然后我试图在代码中使用一些小购物车系统,但是我的购物车中只有一个值。
由于某种原因,似乎要成为数组中的开头数组
addCart=()=>{
var sepet=AsyncStorage.getItem("sepet").then(req=>JSON.parse(req)).then(json=>{
var sepet=[json];
sepet.push({isim:this.props.title,fiyat:this.props.fiyat,image:this.props.image});
AsyncStorage.setItem("sepet",JSON.stringify(sepet));
console.log(sepet)
});
}
然后我正在尝试
export default class aksiyos extends React.Component {
constructor(props) {
super(props);
this.state = {
ApiTitle: [],
}
}
componentDidMount() {
var sepet=AsyncStorage.getItem("sepet").then(req=>JSON.parse(req)).then(json=>{
this.setState({ApiTitle: json });
});
}
render() {
return (
<View style={{backgroundColor: "white"}}>
<ScrollView>{this.state.ApiTitle.map((ids, i)=>
<Text>{ids.isim}</Text>
)}
</ScrollView>
</View>
);
}
}
但是它仅显示我选择的最后一个对象
我也不知道如何删除那些对象。
答案 0 :(得分:0)
您要将项目保存为数组,但同时也要获取它们并将它们放入新数组中。有意义的是,您只能获得最后渲染的项目,因为这可能是唯一不在另一个数组中的项目。您可以简单地使用价差运算符来解决此问题。
const sepets = await AsyncStorage.getItem("sepet")
.then(req=>JSON.parse(req))
.then(json => {
const sepet=[...json]; // <-- If we saved an array, makes sense to spread it in a new array. Otherwise we get [[sepet], sepet]"
sepet.push({
isim:this.props.title,
fiyat:this.props.fiyat,
image:this.props.image
});
AsyncStorage.setItem("sepet",JSON.stringify(sepet)); // <-- save the array
console.log(sepet)
return sepet;
});
在React Native Docs中检出removeItem()
方法以删除项目。