- 部分苹果手机搜索不到小程序
[图片] 用户反馈: 部分苹果手机搜索不到我们的旅途随身听小程序,请问是什么原因造成的
2023-11-10 - 已经授权过隐私协议 调取相册还是报错?
uni.getPrivacySetting 已返回false,已经授权过隐私协议 调取相册还是报错{errMsg: "chooseImage:fail api scope is not declared in the privacy agreement", errno: 112} 求解答
2023-09-19 - webview嵌入h5页面调用高德定位失败?
webview 嵌入h5页面 h5页面中调用高德浏览器定位api 苹果手机系统升级16.4后不能定位 是微信浏览器有什么限制嘛
2023-04-07 - 为什么微信小程序web-view内嵌h5页面 安卓手机中h5页面audio标签不能播放?
微信小程序中嵌套h5 安卓手机微信版本升级到8.0.32后 嵌入的h5页面的audio标签 调用play方法不执行 let audio = new Audio(); console.log(audio); audio.src =""; audio.play(); audio.addEventListener("timeupdate", () => { console.log("timeupdate"); }); audio.addEventListener("play", () => { console.log('play'); });
2023-02-13 - exparser SCL backend initialized 问题?
exparser SCL backend initialized 最近开发者工具一直出现 请问是怎样造成的
2022-08-23 - canvas 2D 使用canvasToTempFilePath生成的临时路径图片无法显示?
基础库在2.8.3以上的 canvas 2D 使用canvasToTempFilePath生成的临时路径图片无法显示 <canvas canvas-id="secondCanvas" :style="{width:canvasWidth + 'px',height:canvasHeight + 'px'}" type></canvas> <view class=""> <cover-view> <cover-image :src = "srcurl"></cover-image> </cover-view> </view> import Vue from 'vue'; export default Vue.extend({ data() { return { photoSrc: 'https://bkimg.cdn.bcebos.com/pic/77094b36acaf2eddff326d3e871001e938019321', canvasHeight: '', canvasWidth: '', srcurl: '' } }, onLoad(option) {}, mounted() { wx.getImageInfo({ src: this.photoSrc, success: (res) => { // 生成指定宽度的图片 var canvasWidth = 100; var canvasHeight = canvasWidth / res.width * res.height; this.canvasHeight = canvasHeight; this.canvasWidth = canvasWidth var ctx = uni.createCanvasContext('secondCanvas'); console.log(canvasWidth, canvasHeight) ctx.drawImage(this.photoSrc, 0, 0, canvasWidth, canvasHeight); ctx.draw(false,(()=> { //保存临时文件 setTimeout(() => { uni.canvasToTempFilePath({ canvasId: 'secondCanvas', x: 0, y: 0, width: 50, height: 50, destWidth: 100, destHeight: 100, success: (res) => { this.srcurl = res.tempFilePath console.log(res.tempFilePath) // wx.getImageInfo({ // src: res.tempFilePath, // success: function (res) { // console.log(res) // // 问题:这里得到的图片像素大小预期的大小不一致 // } // }); }, fail: function(error) { console.log(error) } }) }, 1000) })()) } }) }, methods: { } })
2021-06-25 - wx.showToast之前调用wx.hideLoading()导致wx.showToast不显示?
wx.showToast之前调用wx.hideLoading()导致wx.showToast不显示;怎么解决
2021-05-06 - wx.getUserProfile 支持到微信哪个版本呢?为什么还是会出现获取到的微信名为‘微信用’
wx.getUserProfile 不是一个函数 ,getuserinfo 获取到的微信名 部分为‘微信用户’
2021-04-30 - 微信小程序 获取 微信用户名什么情况下为 ‘微信用户’呢,为什么获取到的名称为‘微信用户’?
<button open-type="getUserInfo" @getuserinfo="decryptgetUserInfo" hover-class="none"> 或者 wx.getUserProfile
2021-04-22 - 为什么游云南小程序可以实现瓦片地图marker聚合功能?
[图片] 现在急需此需求 什么时候能够开放瓦片地图功能 或者 覆盖一张图片
2021-04-14