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

大神,微信小程序支持自定义 tabbar 了,Taro支持吗现在 #2240

Closed
JavaNoScript opened this issue Feb 22, 2019 · 12 comments
Closed

Comments

@JavaNoScript
Copy link

Feature Request 请提到 FeatHub

如果是提交 bug,请搜索文档和 issue,确认以下事项:

  • 该问题没有在其他 issue 和文档讨论到,不属于重复内容

  • 分割线以下的模板除了「 补充信息」每一样都必填

如果不满足以上两点要求的 bug 报告,issue 会被直接关掉。

请多多理解,您现在的不便将会使 Taro 开发者更高效地定位你的问题,修复你的问题。像你一样的 Taro 的使用者也可以通过搜索找到你提供的 bug,对各方都有很大好处。

🙏🙏🙏
阅读完后请在提交的issue中删除以上内容,包括分割线。

问题描述
[问题描述:站在其它人的角度尽可能清晰地、简洁地把问题描述清楚]

复现步骤
[复现问题的步骤]

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

[或者可以直接贴源代码,能贴文字就不要截图]

// 这里可以贴代码

期望行为
[这里请用简洁清晰的语言描述你期望的行为]

报错信息

[这里请贴上你的完整报错截图或文字]

系统信息

Taro v1.2 及以上版本已添加 taro info 命令,方便大家查看系统及依赖信息,运行该命令后将结果贴下面即可。

  • 操作系统: [e.g. Windows 10]
  • Taro 版本 [e.g. v.0.0.64]
  • Node.js 版本 [e.g. v9.0.0]
  • 报错平台 [h5, weapp]

补充信息
[可选]
[根据你的调查研究,出现这个问题的原因可能在哪里?]

@taro-bot
Copy link

taro-bot bot commented Feb 22, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@javahuang
Copy link

javahuang commented Feb 22, 2019

@htf123 上午我开始也以为需要 taro 的额外支持来着,刚才看了下文档,很好集成。

  • 首先参考官方示例,可以直接将 custom-tab-bar 目录拷贝到你项目的 src 下面,对应修改 app.js 的 tarBar 配置
  • taro 的 config/index.js 配置
 copy: {
    patterns: [
      { from: "src/custom-tab-bar/", to: "dist/custom-tab-bar/" }
    ],
    options: {}
  }
  • 在对应的 pages 页面设置一下当前激活的 tarBar
componentDidShow() {
      this.$scope.getTabBar().setData({
        selected: 1 // 当前页面对应的 index
      })
  }

@JavaNoScript
Copy link
Author

@htf123 上午我开始也以为需要 taro 的额外支持来着,刚才看了下文档,很好集成。

  • 首先参考官方示例,可以直接将 custom-tab-bar 目录拷贝到你项目的 src 下面,对应修改 app.js 的 tarBar 配置
  • taro 的 config/index.js 配置
 copy: {
    patterns: [
      { from: "src/custom-tab-bar/", to: "dist/custom-tab-bar/" }
    ],
    options: {}
  }
  • 在对应的 pages 页面设置一下当前激活的 tarBar
componentDidShow() {
      this.$scope.getTabBar().setData({
        selected: 1 // 当前页面对应的 index
      })
  }

@xzedx
Copy link

xzedx commented May 7, 2019

setData以后tabbar状态不生效

@yuez-sky
Copy link
Contributor

可以试试这么写

componentDidShow() {
    if (typeof this.$scope.getTabBar === 'function' &&
      this.$scope.getTabBar()) {
      this.$scope.getTabBar().$component.setState({
        selected: 1,
      })
    }
  }

@ouyangshan09
Copy link

@javahuang 以下代码并不会生效

componentDidShow() {
      this.$scope.getTabBar().setData({
        selected: 1 // 当前页面对应的 index
      })
  }

@ouyangshan09
Copy link

@zysndy 感谢,这个方法可以

componentDidShow() {
    if (typeof this.$scope.getTabBar === 'function' &&
      this.$scope.getTabBar()) {
      this.$scope.getTabBar().$component.setState({
        selected: 1,
      })
    }
  }

@RosApr
Copy link

RosApr commented Jan 13, 2020

@ouyangshan09 我用这个还是不行

if (
            typeof this.$scope.getTabBar === 'function'
            &&
            this.$scope.getTabBar()
        ) {
            this.$scope.getTabBar().setData({
                selected: 4,
            })
        }

这个可以

@shineSnow
Copy link

taro 3.x 版本 已经不支持 scope了,这个怎么搞?

@qiyulaoshi
Copy link

taro 3.x 版本 已经不支持 scope了,这个怎么搞?

我也是这样,你得问题怎么解决的啊

@congyaqwq
Copy link

#7980 (comment)
引用这位的,可以实现,vue版本在onShow事件中处理~

@dolphin0618
Copy link

@htf123 上午我开始也以为需要 taro 的额外支持来着,刚才看了下文档,很好集成。

  • 首先参考官方示例,可以直接将 custom-tab-bar 目录拷贝到你项目的 src 下面,对应修改 app.js 的 tarBar 配置
  • taro 的 config/index.js 配置
 copy: {
    patterns: [
      { from: "src/custom-tab-bar/", to: "dist/custom-tab-bar/" }
    ],
    options: {}
  }
  • 在对应的 pages 页面设置一下当前激活的 tarBar
componentDidShow() {
      this.$scope.getTabBar().setData({
        selected: 1 // 当前页面对应的 index
      })
  }

文档在哪看的,找了半天taro的文档没看到自定义tabbar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants