-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在刷新页面时,路由最末端会被加上/ #6
Comments
和这个插件有什么关系吗? |
我们使用的是umi3自带的路由,在未开启mako插件的情况下是不会出现上述问题的,所以猜测是mako插件导致的问题 |
请问您是用windows开发的么 |
WSL,这个应该跟操作系统无关,同事的Macbook也有这个问题 |
@lmarklil 好像是有这个现象,会有什么异常影响吗 ? |
mako 本身不会,只有用了这个插件才会 |
某些基于当前页面URL做判断的业务逻辑就会有问题,不过这个影响倒也不大,目前只是在开发环境才会启用mako插件 |
好的 |
我也遇到了这个问题,使用 window.location.href 导出的时候拼接了一个 / 在后面导致页面直接挂了,提示重定向的次数过多 |
这应该是使用了 |
@liuwenzhuang 不使用会有重定向问题吧,是不是某个版本之后才有这个问题 |
我这边的现象是 umi3 项目,本地开发时 get 请求会被重定向,尾部了增加一个 我试了下 umi4 的项目里用 mako,本地开发的时候,接口请求不会走到 |
当前路由为:http://localhost:8000/page时,刷新后会变成:http://localhost:8000/page/
当前路由为:http://localhost:8000/page?id=1时,刷新后会变成:http://localhost:8000/page/?id=1
The text was updated successfully, but these errors were encountered: