- 为什么报错 this.initLiveManager is not a function?
没有调用过这个方法,线上报错: this.initLiveManager is not a function TypeError: this.initLiveManager is not a function at g.attached (https://usr/app-service.js:4278:62144) this.liveManager.store.storeSetData is not a function. (In 'this.liveManager.store.storeSetData({curComponentName:this.data.componentName,opt:o,cb:t})', 'this.liveManager.store.storeSetData' is undefined)
2020-11-12 - 为什么只有一部手机调用wx.navigateToMiniProgram不跳转?
SDKVersion=2.14.0 onClick(){ console.log("调用API跳转小程序"); if (wx.navigateToMiniProgram) { wx.navigateToMiniProgram({ appId: "wx411cb721948bb165", path: "/pages/index/index", success(res) { console.log("小程序跳转成功"); }, fail(e) { console.error("小程序跳转失败:", e); }, complete(res){ console.error("小程序跳转结束:", res); } }); } else { console.error("API不支持") } } 目前只发现一部手机无法跳转,其他的手机都跳转正常,用户点击按钮,触发onClick,日志只输出 “调用API跳转小程序”,不会跳转,也不报错
2020-11-04 - 更新开发工具后 ["usingComponents"]["van-notice-bar"] 未找到?
今天10月19日更新开发工具后,打开项目报错,["usingComponents"]["van-notice-bar"] 未找到,在json文件中原先组件的配置路径为 "usingComponents": { "van-notice-bar": "/@vant/weapp/notice-bar" } 解决方式为:去掉开头的 / 如下 "usingComponents": { "van-notice-bar": "@vant/weapp/notice-bar" }
2020-10-19 - 小程序打开后白屏
[图片]
2020-08-27 - 如何解决radial-gradient不起作用?
开发工具中预览 [图片] ios手机预览: [图片] 代码片段:https://developers.weixin.qq.com/s/Ck5IB2mE7mjJ
2020-07-22 - 云函数调用登录返回null
云函数运行环境在 Nodejs10.15时,登录云函数不加 async 关键字,调用时会返回null: [图片] [图片] 加上 async 关键字可以正常返回: [图片] [图片] 但是之前上传的 Nodejs8.9的云函数是没有这样的问题的: [图片]
2020-06-30 - 如何查看OCR组件剩余调用次数?
如题
2020-03-30 - 为什么自定义标题有时候样式异常?
复现代码片段: https://developers.weixin.qq.com/s/I7wjXUmK7Hfi
2020-03-17 - css动画显示省略号为什么不起作用?
给伪类添加动画,动态显示省略号实现加载中特效,在开发者工具中都正常展示,在手机中color起作用,content修改不起作用,代码如下: .dot::after { width: 40rpx; display: inline-block; content: ""; animation: dot 1s infinite; } @keyframes dot { 0%, 100% { content: ""; color: red; } 25% { content: "."; color: green; } 50% { content: ".."; color: blue; } 75% { content: "..."; color: pink; } }
2020-02-09 - 使用第三方开发的直播插件,我也需要有相应的直播资质吗?
如题,电商类小程序,需要加入直播,但是没有直播类目所需要的资质文件,官方视频好像是说的小程序插件就是解决没有资质的问题,但是论坛有些评论说同样需要资质,但是我看“蘑菇街购物台”小程序只选择了电商平台类目,没有选择直播类目,但是仍然可以直播。 说白了:我没有直播资质,是否可以用第三方小程序插件直播? 下面“蘑菇街购物台”小程序,没有直播类目,但是可以直播,是怎么做到的? [图片][图片] [图片]
2019-07-08