作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
我敢打赌他们使用 state
property推送页面时向组件指示如何呈现页面。更具体地说,指示它来自的组件。例如:
router.push({
pathname: '/posts/origami-studio-by-facebook',
state: { fromPosts: true }
})
然后您可以在路由的组件中读取路由器的状态,以检查要显示的页面。
const Post = (productName) => {
if(this.context.router.location.state.fromPosts) {
return <Posts productPopup{productName} />
// open the posts page with a popup for the product
} else {
return <PostPage productName={productName} />
}
}
因此,当您在浏览器中打开页面时,state.fromPosts
未设置,您将被重定向到 PostPage。到头来,即使是同一条路线,得到的也完全不同。
关于javascript - 如何在 React-router 中找到 Popup 状态和刷新状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40299440/
我是一名优秀的程序员,十分优秀!