我为购物应用程序创建了一个布尔状态,在这种状态下,当用户单击“购买”按钮时,应将该状态设置为true
并在容器中显示购物车总数,但是它不起作用。
下面是我的代码:
减速器:
if (action.type === SHOW_CART) {
return {
...state,
show: action.showCart,
};
const initialstate = {
show: false,
}
这是我的减速器的初始状态:
export const showCart = () => {
return {
type: SHOW_CART,
showCart: true,
};
};
那是我的动作:
<View style={styles.buy}>
<Text
onPress={() => {
this.props.addToCart(item.id);
this.props.showCart();
}}
>
Buy Once
</Text>
</View>
const mapStateToProps = (state) => {
return {
items: state.clothes.jeans,
};
};
const mapDispatchToProps = (dispatch) => {
return {
addToCart: (id) => dispatch(addToCart(id)),
showCart: () => dispatch(showCart()),
};
};
在此代码中,我使用了一个平面列表,在平面列表中,我使用了onPress
来显示购物车容器并调度我的操作
应用
export default function App() {
return (
<>
<Provider store={Store}>
<NavigationContainer>
<AppNavigation />
</NavigationContainer>
<ViewChart />
</Provider>
</>
);
}
ViewCart.js
<View>
{this.props.show ? (
<View style={styles.total}>
<Text style={styles.totaltext}>Total:</Text>
<Text style={styles.priceTotal}>{this.props.total}</Text>
<View style={styles.onPress}>
<Text
style={styles.pressText}
onPress={() => this.props.navigation.navigate("Cart")}
>
View Cart
</Text>
</View>
</View>
) : null}
</View>
const mapStateToProps = (state) => {
return {
total: state.clothes.total,
show: state.clothes.show,
};
};
export default connect(mapStateToProps)(ViewChart);
在App.js中,我添加了视图购物车的conatiner,当用户单击“购买”时应显示该视图
并且在购物车中我遇到错误undefined is not an object (evaluating '_this.props.navigation.navigate')
答案 0 :(得分:0)
更改
this.props.showCart;
到
this.props.showChart();