为什么我的反应还原状态不引起重新渲染?



你好,我有一个问题,当我试图使用选择器时,我的redux状态不会导致重新渲染。我对react-redux和打字还是个新手。我一直试图谷歌这个和大多数互联网线程说,这是因为你需要创建一个新的对象,并返回让redux知道状态已经改变。我已经这么做了。但是我的对象没有重新渲染,状态被更新了,但没有引起渲染。

我做错了什么?

My Redux reducer


import { Computer, GraphicsCard } from "../../interfaces";
const initialState: Computer = {
graphicsCard: null,
}

interface SelectGraphicsCardAction {
type: "SELECT_GRAPHICSCARD";
payload: GraphicsCard;
}
interface UnselectGraphicsCardAction {
type: "UNSELECT_GRAPHICSCARD";
}

export type Action = SelectGraphicsCardAction | UnselectGraphicsCardAction
export const computerReducer = (state = initialState, action: Action) => {
switch(action.type){
case "SELECT_GRAPHICSCARD": {
const { payload } = action;
console.log(state, payload)
const newState = {
...state,
graphicsCard: {
...state.graphicsCard,
...payload
}
}
//This evaluates to false
console.log(state === newState)
return newState
}
case "UNSELECT_GRAPHICSCARD": {
return {
...state,
graphicsCard: null
}
}
default:
return state;
}
} 

My Redux Store

import { configureStore } from '@reduxjs/toolkit'
import { computerReducer } from './reducers/ComputerReducer'
// ...
export const store = configureStore({
reducer: {
computer: computerReducer
},
})

我在这里选择/使用状态。

function SelectedComputer() {
const computer = useSelector((state: Computer) => state);
const dispatch = useDispatch();
const { graphicsCard } = computer;
//Logging correct state
console.log(computer)
return (
<div className="fixed top-10 right-4 bg-white rounded-t-lg">
<p className="text-center font-bold border-b-1 border-b-black bg-gray-100 rounded-t-lg shadow-md">
Selected Parts
</p>
<div className="flex flex-row">
<CpuFill className="m-1" />
{graphicsCard ? (
//Not rendering this when updating state.
<p>{graphicsCard.name}</p>
) : (
<p>No Graphicscard selected!</p>
)}
<Trash className="flex justify-center"/>
</div>

编辑:下面是一个代码片段,我使用分派来更新状态。

import React, { FC } from "react";
import { Button, Card } from "react-bootstrap";
import { useDispatch } from "react-redux";
import { Component, ComputerComponent } from "../interfaces";
import { Action } from "../redux/reducers/ComputerReducer";
interface ComponentCard {
component: Component;
buttonText: string;
type: string;
}
interface DomainImage {
[key: string]: string;
}
const ComponentCard: FC<ComponentCard> = ({ component, buttonText, type }) => {
const dispatch = useDispatch();
const imageMap: DomainImage = {
"inet.se": "https://cdn.inet.se/gfx/ext/226/brand-assets/inet-logo2.jpg",
"komplett.se":
"https://cached-images.bonnier.news/gcs/di-bilder-prod/mly/fcb28d10-158c-485b-814c-b461baa0e188.jpeg",
"webhallen.se":
"https://static.wikia.nocookie.net/logopedia/images/6/65/Webhallen_2021.svg/revision/latest?cb=20220420201224",
};
return (
<Card className="flex flex-row items-center w-50 shadow-md mt-2 mb-2">
<div className="flex justify-center items-center mr-3">
<img className="h-36 w-40 p-2" src={component.imgUrl} />
</div>
<div className="flex-1 text-left">
<h4 className="text-base">{component.name}</h4>
<p>
<span>
ArtNr: {component.articleNumber}, Manufacturer:{" "}
{component.manufacturer}
</span>
</p>
<h4 className="absolute right-36 top-10">
<span>{component.price} :-</span>
</h4>
</div>
<Button
color=""
className="absolute right-5 h-10 w-20"
onClick={() => dispatch({ type, payload: component })}
>
{buttonText}
</Button>
<a href={component.url} target="_blank" className="absolute right-5 bottom-0">
<img
className="w-15 h-10"
src={imageMap[component.domainName]}
alt={component.name}
/>
</a>
</Card>
);
};

无论如何,你在这里使用的是一种非常过时的(2019年之前的)Redux风格,它最终将是你用现代Redux编写的代码的4倍,尤其是在与TypeScript结合使用时。

我强烈建议你遵循官方的Redux教程和TypeScript快速入门,它将向你展示你必须设置的所有额外类型(它比你现在拥有的要少得多)。

问题的根源很可能是意外的状态修改,这也可能发生在遗留Redux的reducer之外——在现代Redux中,您会在进行更改时立即得到一个错误——从而节省了您的调试时间。所以我真的建议你切换一下,你可能会摆脱这个bug。

最新更新