url栏中的重复父路径

时间:2016-02-16 21:39:37

标签: react-router history.js relayjs

使用:

"react-router": "^2.0.0",
"react-router-relay": "^0.9.0",

当我在父路径下推送任何链接时,对于每次新的router.push调用,父路径都会在URL栏中重复一次。

// http://localhost:3000

router.push('auth/profile')
// http://localhost:3000/auth/profile

router.push('auth/profile')
// http://localhost:3000/auth/auth/profile

router.push('auth/browse')
// http://localhost:3000/auth/auth/auth/browse

当我记录location(来自react-router)时,它不显示重复项。也许浏览器正在将父路径推送到基本名称上?

1 个答案:

答案 0 :(得分:11)

更改

router.push('auth/profile')

router.push('/auth/profile')

解决了这个问题。