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

Taro.getMenuButtonBoundingClientRect()无法取到值 #2585

Closed
XiaogeTek opened this issue Mar 26, 2019 · 4 comments
Closed

Taro.getMenuButtonBoundingClientRect()无法取到值 #2585

XiaogeTek opened this issue Mar 26, 2019 · 4 comments

Comments

@XiaogeTek
Copy link

问题描述
Taro.getMenuButtonBoundingClientRect()无法取到值

系统信息

  • 操作系统: Windows 10
  • Taro 版本 v1.2.21
  • Node.js 版本 v10.14.1
  • 报错平台 weapp
@taro-bot
Copy link

taro-bot bot commented Mar 26, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@luckyadam
Copy link
Member

贴一下具体的代码吧

@taro-bot
Copy link

taro-bot bot commented Mar 28, 2019

Hello~

您的问题所提供的信息不足,我们无法定位到具体的问题。如果有空的话还请拔冗提供更具体的信息,否则这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@XiaogeTek
Copy link
Author

主要代码如下

import Taro from '@tarojs/taro'

import './app.scss'

class App extends Taro.Component {
  componentWillMount() {
    Taro.getSystemInfo({
      success: e => {
        this.globalData.StatusBar = e.statusBarHeight
        // let custom = wx.getMenuButtonBoundingClientRect()
        let custom = Taro.getMenuButtonBoundingClientRect()
        this.globalData.Custom = custom
        this.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight
      }
    })
  }

  globalData = {
  }
  config = {
    pages: [
      'pages/index/index',
    ],
    window: {
      navigationBarBackgroundColor: '#39b54a',
      navigationBarTitleText: 'Test',
      navigationStyle: 'custom',
      navigationBarTextStyle: 'white'
    },
    usingComponents: {},
  }

  render() {
    return null
  }
} //app.js

export default App
Taro.render(<App />, document.getElementById('app'))

@taro-bot taro-bot bot removed the to be closed label Apr 12, 2019
@taro-bot taro-bot bot closed this as completed Apr 12, 2019
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

2 participants