每当我尝试在我的react/redux应用程序中使用getState()方法时,我都会收到这个错误.getState()


TypeError: getState is not a function
32 | 
33 | export const removeFromCart = (product) => (dispatch, getState) => {
> 34 |      getState() 
35 |     const cartItems = getState().cart.cartItems.slice().filter(
36 |         (x) => x._id !== product._id
37 |         );`enter code here`
View compiled
▶ 29 stack frames wer

您需要将getState附加到这样的var:

const state = getState() ;

相关内容

  • 没有找到相关文章

最新更新