本文主要是介绍【 错误总结 】API ‘getMenuButtonBoundingClientRect/‘ is not yet implemented,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错信息
API 'getMenuButtonBoundingClientRect/' is not yet implemented
这是api不支持 ,当前平台不支持这个api,注意添加条件编译
解决办法
H5 || APP-PLUS || MP-ALIPAY 不支持胶囊按钮样式的API
// 根据微信小程序的右上侧的胶囊样式 设置导航栏内容的高度
// #ifndef H5 || APP-PLUS || MP-ALIPAYconst menuInfo = uni.getMenuButtonBoundingClientRect()// 导航栏内容的高度 = (胶囊底部的高度 - 状态栏的高度) + (胶囊顶部的高度 - 状态栏的高度)this.navBarHeight = (menuInfo.bottom - info.statusBarHeight) + (menuInfo.top - info.statusBarHeight)// 导航栏内容的宽度 = ()this.navBarWidth = menuInfo.left// console.log(this.navBarHeight,this.navBarWidth)
// #endif
这篇关于【 错误总结 】API ‘getMenuButtonBoundingClientRect/‘ is not yet implemented的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!