- 为什么<web-view></web-view>打开有道单词翻译的页面提示错误,而IE打开就可以?
<web-view src="https://m.youdao.com/m/result?lang=en&word=beautiful"></web-view> 上面这个一直提示:server error (An error occurred in the application and your page could not be sererd. If you are the application owner check your logs for details) 实际上用IE访问页面https://m.youdao.com/m/result?lang=en&word=beautiful 根本不需要log。
04-24 - setData最近渲染是不是出问题了?数据量超过9KB原来可以,这二天开始就不能渲染了,为什么?
下面的程序中sentnces超过9KB就不渲染了,显示sentnces.length长度为0 ,为什么呢?原来好好的,一直在使用,就这二天出现这个问题的? <view wx:for="{{sentnces}}" wx:for-item="sPara" wx:for-index="Pindex" wx:key="Pindex" bindtouchstart="cancellTransing"> <view style="display: flex;justify-content: start;flex-wrap: wrap;margin-top: 20rpx;"> <view wx:for="{{sPara}}" wx:for-index="Windex" wx:key="unique"> <view bindtap="moveToPara" data-index="{{[Pindex,Windex]}}"> <text wx:if="{{Windex==0}}"><text style="font-size:28rpx;color:white;background-color:{{indexParaColor[Pindex]}} ;">{{item}}</text></text> <text wx:else style="background-color:{{paraColor[Pindex]}};font-size:38rpx;"> <text wx:if="{{item==' '}}" decode="true"> </text> <text wx:else style="color:{{((wordColor[Pindex][Windex]=='')?(''):'red')}}">{{item}}</text> </text> </view> </view> </view> </view>
02-23 - 为什么 用户信息授权描述不明确、不清晰,本次审核不通过?
用户隐私保护指引审核结果你好,你的小程序“星阅桌游”用户隐私保护指引审核因用户信息授权描述不明确、不清晰,本次审核不通过,建议修改后重新提交。 1.是什么用户信息审核需要审核? 2、怎么样才能描述明确、清晰 3、审核近10次了,都不通过,不知道该怎么修改了?
01-31 - 为什么wx.getRecorderManager()只能录音一分钟?
wx.getRecorderManager()录音到一分钟的时候自动结束了,怎么回事啊?
01-28 - 云函数超时,怎么解决啊?谢谢
cloud.callFunction:fail Error: errCode: -504003 | errMsg: Invoking task timed out after 3 seconds (callId: 1705377329561-0.4703798980074996) (trace: 11:55:29 start->11:55:31 normal poll->11:55:33 system error (Error: errCode: -504003 | errMsg: Invoking task timed out after 3 seconds), abort)"line: 1message: "cloud.callFunction:fail Error: errCode: -504003 | errMsg: Invoking task timed out after 3 seconds (callId: 1705377329561-0.4703798980074996) (trace: 11:55:29 start->11:55:31 normal poll->11:55:33 system error (Error: errCode: -504003 | errMsg: Invoking task timed out after 3 seconds), abort)"sourceURL: "https://lib/WACloud.js"stack: "R@https://lib/WACloud.js:1:234833↵@https://lib/WACloud.js:1:268614↵q@https://lib/WASubContext.js:1:71287↵@https://lib/WASubContext.js:1:71509↵C@https://lib/WASubContext.js:1:40986↵@https://lib/WASubContext.js:1:54808↵I@https://lib/WASubContext.js:1:54577↵@https://lib/WASubContext.js:1:54615↵f@https://lib/WASubContext.js:1:164458↵@https://lib/WASubContext.js:1:126919↵@https://lib/WASubContext.js:1:159790↵p@https://lib/WAServiceMainContext.js:1:399934↵@https://lib/WAServiceMainContext.js:1:387883↵_onNativeTimer@↵global code@"
01-16 - 为什么"pageOrientation": "auto",只是在app.json中才起作用?
为什么"pageOrientation": "auto",只是在app.json中才起作用? 单个页面 json 文件中 "pageOrientation": "auto" 就不起作用呢?
2023-12-29 - TypeError: ctx.draw is not a function 是什么原因?
wx.createSelectorQuery() .select('#myCanvas') // 在 WXML 中填入的 id .fields({ node: true, size: true }) .exec((res) => { // Canvas 对象 const canvas = res[0].node // 渲染上下文 const ctx = canvas.getContext('2d') // Canvas 画布的实际绘制宽高 const width = res[0].width const height = res[0].height // 初始化画布大小 const dpr = wx.getWindowInfo().pixelRatio canvas.width = width * dpr canvas.height = height * dpr ctx.scale(dpr, dpr) ctx.moveTo(10, 50) ctx.lineTo(100, 50) ctx.stroke() ctx.draw()
2023-09-14 - 数据库无故数据全部丢失,损失巨大不可承受,啥原因?
我的小程序存有用户的注册信息、缴费、消费、计件工作记录、工资核算等信息,今天数据库中所有集合全部不见了,如果不能全部恢复将造成不可承受的损失。请腾讯管理人员抓紧恢复。上午反馈的问题,到晚上10个集合只恢复了2个,其他请也一定要恢复啊。 现在得不到腾讯的及时答复,着急啊!!!!!!!!!!!!!!!!!!! 我绑定的邮箱是szhswanghua@126.com
2023-08-16 - 调用百度的语音合成返回的MP3语音data怎么播放呢?
百度的语音合成返回的MP3语音data怎么播放呢? wx.request({ url: "https://tsn.baidu.com/text2audio?tex=more&lan=zh&cuid=wh123wh&ctp=1&tok=24***82300", data: { aue: 3 }, success(res) { fs.writeFile({ filePath: `${wx.env.USER_DATA_PATH}/lady.mp3`, data: res.data, encoding: 'ucs2', success(ws) { innerAudioContext.src = `${wx.env.USER_DATA_PATH}/lady.mp3` innerAudioContext.play() }, }) }, }) 将返回的MP3数据,写入一个临时文件,但是返回的错误提示为Uncaught (in promise) DOMException: Failed to load because no supported source was found.
2023-06-27 - 请问哪里可以找到“微信同声传译”插件的添加资格要求?
[图片]
2022-12-19