最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Pose + React Router Keys Not Recognized? - Stack Overflow

programmeradmin1浏览0评论

So I have a small React app. Trying to use React Pose to animate page transitions. I've followed a similar structure as one of the official demos with react-router-dom, and if I'm looking at this right, it should be working. However, I'm getting an error that says:

Error: HEY, LISTEN! Every child of Transition must be given a unique key

.... And points directly to the code below. Is there a certain method that keys should be created here? Are there elements of each page that might be causing an issue here? The trace only points directly to this section of code (specifically the PoseGroup) so I'm not sure what I'm missing here.

const RouteContainer = posed.div({
    enter: { opacity: 1, delay: 350, beforeChildren: true, y: 0 },
    exit: { opacity: 0, y: -50 }
});

const Routes = (props) => {
    return(
        <Route render={({ location }) => (
            <PoseGroup>
                <RouteContainer key={location.key}>
                    <Switch location={location}>
                        <Route exact path="/" ponent={Home} key="home"/>
                        <Route path="/about" ponent={About} key="about"/>
                        <Route path="/bugs" ponent={Bugs} key="bugs"/>
                        <Route path="/security" ponent={Security} key="security"/>
                        <Route path="/aur" ponent={Aur} key="aur"/>
                        <Route path="/download" ponent={Download} key="download"/>
                    </Switch>
                </RouteContainer>
            </PoseGroup>
        )}/>
    )
}

Any thoughts or advice would be appreciated. I'm not sure if it's requiring keys for the individual pages that are returned or if it's something else that I'm missing.

EDIT

So, strangely enough, removing all PoseGroup elements (i.e. breaking it down to just the Switch and Route children, removing all animation) saving and restarting the application, then re-adding the exact same code back in works just fine. I don't fully understand what's going on here, unless there's some kind of browser caching issue or something else along those lines?

So I have a small React app. Trying to use React Pose to animate page transitions. I've followed a similar structure as one of the official demos with react-router-dom, and if I'm looking at this right, it should be working. However, I'm getting an error that says:

Error: HEY, LISTEN! Every child of Transition must be given a unique key

.... And points directly to the code below. Is there a certain method that keys should be created here? Are there elements of each page that might be causing an issue here? The trace only points directly to this section of code (specifically the PoseGroup) so I'm not sure what I'm missing here.

const RouteContainer = posed.div({
    enter: { opacity: 1, delay: 350, beforeChildren: true, y: 0 },
    exit: { opacity: 0, y: -50 }
});

const Routes = (props) => {
    return(
        <Route render={({ location }) => (
            <PoseGroup>
                <RouteContainer key={location.key}>
                    <Switch location={location}>
                        <Route exact path="/" ponent={Home} key="home"/>
                        <Route path="/about" ponent={About} key="about"/>
                        <Route path="/bugs" ponent={Bugs} key="bugs"/>
                        <Route path="/security" ponent={Security} key="security"/>
                        <Route path="/aur" ponent={Aur} key="aur"/>
                        <Route path="/download" ponent={Download} key="download"/>
                    </Switch>
                </RouteContainer>
            </PoseGroup>
        )}/>
    )
}

Any thoughts or advice would be appreciated. I'm not sure if it's requiring keys for the individual pages that are returned or if it's something else that I'm missing.

EDIT

So, strangely enough, removing all PoseGroup elements (i.e. breaking it down to just the Switch and Route children, removing all animation) saving and restarting the application, then re-adding the exact same code back in works just fine. I don't fully understand what's going on here, unless there's some kind of browser caching issue or something else along those lines?

Share Improve this question edited Jan 30, 2019 at 23:30 bflemi3 6,79021 gold badges95 silver badges158 bronze badges asked Oct 1, 2018 at 2:17 Isaac DoudIsaac Doud 2291 silver badge8 bronze badges 3
  • are you still getting that error after adding that key? – Bhojendra Rauniyar Commented Oct 1, 2018 at 2:26
  • After adding which key? The code above is my current code. – Isaac Doud Commented Oct 1, 2018 at 2:33
  • add the key to PoseGroup – Amir-Mousavi Commented Oct 1, 2018 at 4:57
Add a ment  | 

1 Answer 1

Reset to default 16

After bringing up the refresh bug on their github page, one of them noted that instead of the RouteContainer having a location.key, it should be replaced with a location.pathname for better accuracy. After doing this, the refresh bug stopped happening and things worked as they should. This is what the end code looked like.

const Routes = (props) => {
    return(
        <Route render={({ location }) => (
            <PoseGroup>
                <RouteContainer key={location.pathname}>
                    <Switch location={location}>
                        <Route exact path="/" ponent={Home} key="home"/>
                        <Route path="/about" ponent={About} key="about"/>
                        <Route path="/bugs" ponent={Bugs} key="bugs"/>
                        <Route path="/security" ponent={Security} key="security"/>
                        <Route path="/aur" ponent={Aur} key="aur"/>
                        <Route path="/download" ponent={Download} key="download"/>
                    </Switch>
                </RouteContainer>
            </PoseGroup>
        )}/>
    )
}

Still not sure what would cause the refresh bug to happen in the first place, but at least this does the trick.

发布评论

评论列表(0)

  1. 暂无评论