演示和代码=> https://codesandbox.io/s/73ymn2k911
根据我对开发工具的观察,它最初知道放置组件的位置,但忘记设置opacity: 1
或删除旧组件
我怀疑问题在于app.js 请参阅下面的更新。
import React, { Component } from "react";
import { Route, matchPath } from "react-router-dom";
import TransitionGroup from "react-transition-group/TransitionGroup";
import AnimatedSwitch from "./animated_switch";
import { firstChild } from "../utils/helpers";
import TopBar from "./top_bar";
import Home from "./home";
import Projects from "./projects";
import ProjectItem from "./project_item";
import Missed from "./missed";
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
projects: []
};
}
componentDidMount() {
fetch("https://jsonplaceholder.typicode.com/posts")
.then(response => {
return response.json();
})
.then(json => {
this.setState({
projects: json.slice(0, 7)
});
});
}
render() {
return (
<div className="wrapper">
<TopBar />
<Route
render={({ location }) => (
<TransitionGroup component="main">
<AnimatedSwitch
key={location.pathname}
location={location}
>
<Route exact path="/" component={Home} />
<Route
exact
path="/projects"
render={props => (
<Projects {...props} projects={this.state.projects} />
)}
/>
<Route
path="/projects/:id"
render={props => (
<ProjectItem {...props} projects={this.state.projects} />
)}
/>
<Route component={Missed} />
</AnimatedSwitch>
</TransitionGroup>
)}
/>
</div>
);
}
}
但我错了。单击codesandbox.io上的导航链接后,它会向我的控制台输出两个错误,这些错误不会被我的实时测试网站上的chrome dev工具报告:
Warning: Unknown event handler property `onExited`. It will be ignored.
Warning: Received `true` for a non-boolean attribute `in`.
这完全基于我发现的旧版依赖项的示例,去年发布到博客上。我试图从榜样中学习,并且很难理解每6个月发生变化的事情。
如果你能提供帮助,谢谢!
更新:我一直在审核react-transition-group v1到v2 migration guide,我认为问题实际上是我的过渡组件,我不知道如何修复。
答案 0 :(得分:1)
我只是为我自己解决了这个问题,但是TransitionGroup
希望它的直系子孙属于Transition
类型。组件本身实际上并没有对此进行任何验证,因此只会在所有这些子节点上拍in
和onExit
道具。因为您的孩子在这种情况下是样式div
,所以这些属性无效,因此您会收到这些警告。如果将组件包装在Transition
或CSSTransition
中,这些警告将消失。