Skip to content
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

fix(router): 修复设置 basename 后不跳转默认路由的问题 #11427

Merged
merged 5 commits into from
Apr 6, 2022

Conversation

ryougifujino
Copy link
Contributor

@ryougifujino ryougifujino commented Mar 10, 2022

这个 PR 做了什么? (简要描述所做更改)
history升级到v5后取消了对basename的支持
相关讨论1
相关讨论2

而对默认路由跳转的处理还是沿用的v4版本的方式,导致了使用如https://.../basenamehttps://.../basename/这样的方式访问不会跳转到默认路由(browser 模式,使用Taro 3.4.3版本验证)。(用devServer和以下配置可以复现)
config/dev.js

module.exports = {
  env: {
    NODE_ENV: '"development"'
  },
  mini: {},
  h5: {
    publicPath: '/foo/',
    router: {
      mode: 'browser',
      basename: '/foo'
    },
    devServer: {
      // 省略
    }
  }
}

而老版本没有这个问题(使用Taro 3.2.7版本验证),这个问题应该是由这个PR引起的 @ZakaryCode ,所以应该从Taro 3.3.1版本开始就有这个问题了。这个问题会导致升级到新版本后只有basename的地址无法访问。

这个 PR 是什么类型? (至少选择一个)

  • 错误修复(Bugfix) issue id #
  • 新功能(Feature)
  • 代码重构(Refactor)
  • TypeScript 类型定义修改(Typings)
  • 文档修改(Docs)
  • 代码风格更新(Code style update)
  • 其他,请描述(Other, please describe):

这个 PR 涉及以下平台:

  • 所有小程序
  • 微信小程序
  • 支付宝小程序
  • 百度小程序
  • 字节跳动小程序
  • QQ 轻应用
  • 京东小程序
  • 快应用平台(QuickApp)
  • Web 平台(H5)
  • 移动端(React-Native)

@ZakaryCode ZakaryCode added the T-h5 Target - 编译到 H5 label Mar 11, 2022
@ryougifujino
Copy link
Contributor Author

@ZakaryCode @Chen-jj 能合一下吗,现在因为这个问题没办法升级新版本了。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-h5 Target - 编译到 H5
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants