- 求教,我的wx.navigateTo为什么无法跳转到非Tabbar页面?
wxml内使用了actionSheet组件。代码如下: <mp-actionSheet bindactiontap="btnClick" show="{{showActionsheet}}" actions="{{groups}}" title="创建的歌单"> </mp-actionSheet> js中绑定函数如下: btnClick(e) { this.close(); if (e.detail.value == 1){ this.popup.showPopup(); } else if (e.detail.value == 2){ wx.navigateTo({ url: 'pages/listmanager/listmanager', }) } } }) 不明白为什么在这里的跳转不起作用。
2019-12-17 - 按照示例引入ActionSheet组件报错?
按照示例在页面.json文件中使用 { "usingComponents": { "mp-actionSheet": "../../components/actionsheet/actionsheet" } } 但是报了Component is not found in path "components/actionsheet/actionsheet" (using by "pages/index/index");的错误。 这是什么原因?
2019-12-17 - 真机调试无法获取到openid?
使用开发者工具可以获取并打印openid,但是真机调试时是undefined
2019-12-12 - 新人提问,设置的margin-left的效果为什么与期望不一致?
[图片] wxss代码如下: .musicTitle{ position: absolute; font-size: 25rpx; margin-top: 30rpx; margin-left: 0; } 它的margin-left为什么不是以边框为开始的?
2019-12-03