- 小程序视频组件的静音按钮icon不同步
[图片] 实际是有声音的,希望尽快解决,客户以为是我们开发的问题
2021-09-15 - 滚动到最后scrollLeft为啥和scrollWidth的值不一样?
https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html <scroll-view class="full-multi-product-scroll" scroll-x="{{true}}" bindscroll="_handleScroll"> <view class="product-box" wx:for="{{16}}"></view> </scroll-view> bindscroll滑动到最后,scrollLeft总是小于scrollWidth的值,不应该是一样的吗?如果不一样,我怎样能知道scrollLeft是否到底了 当前场景:进度条 需要根据滑动距离,显示滑动的进度条
2021-08-31 - wx.openChannelsLive跳转?
[图片] 点击允许之后,没有打开视频号 参数正常
2021-07-07 - 自定义 tabbar 无法使用 show() ?
// 官方例子代码片段 Component({ pageLifetimes: { show: function() { // 页面被展示 console.log('show') }, hide: function() { // 页面被隐藏 console.log('hide') }, resize: function(size) { // 页面尺寸变化 } }, data: { selected: 0, color: "#7A7E83", selectedColor: "#3cc51f", list: [{ pagePath: "/index/index", iconPath: "/image/icon_component.png", selectedIconPath: "/image/icon_component_HL.png", text: "组件" }, { pagePath: "/index/index2", iconPath: "/image/icon_API.png", selectedIconPath: "/image/icon_API_HL.png", text: "接口" }] }, attached() { }, methods: { switchTab(e) { const data = e.currentTarget.dataset const url = data.path wx.switchTab({url}) this.setData({ selected: data.index }) } } }) [图片] 求解决,急急急
2019-12-27 - 在app.js里面获取到了信息,但是如何传到页面里面的js?
在app.js里面获取到了信息,但是如何传到页面里面的js? globalData里面的userInfo在页面js里面为null,求解,急急急
2017-10-24