对的,辣鸡微信团队,不知道天天在干嘛,也没人管管这个问题
多款小程序背景,在新版本微信中,显示异常【而在老版本微信中显示正常】[图片] 在开发者工具和老版本微信中,显示正常,在最新版本的微信8.0.9中,白色背景显示异常 如下图 [图片] ----------------------------- [图片] 在开发者工具和老版本微信中,显示正常,在最新版本的微信8.0.9中,白色背景显示异常 如下图: [图片] 【使用其他不同安卓品牌手机测试,最新版的8.0.9微信,问题都存在,但是在开发者工具中未找到问题】
2021-08-08真的搞不懂了,这帮人在干什么?老改我背景色干什么,一会黑一会蓝一会灰色的,搞飞机呢?
打开小程序颜色是黑色?小程序突然颜色变黑色,用其他手机打开是正常的灰白色,微信版本是8.0.9 [图片]
2021-08-06???????
鸿蒙系统微信小程序的背景色怎么跟安卓系统的背景色不一致?安卓系统上微信小程序的背景色好像是#FFFFFF ,鸿蒙系统上的背景底色怎么好像是一个灰色的色调?
2021-08-06我的背景色变成灰色的了,以前是白色的,这帮人不知道天天在干嘛
在没有修改的情况下微信小程序的背景变成红色的了?微信小程序今天下午突然背景变成红色的,今天我没有修改也没有发布。 有些手机又正常,不知道什么原因? [图片]
2021-08-06搞笑呢?你ios打开调试模式了吗?
request发送请求安卓可以,ios报错?[图片]
2021-07-29没人知道?
wx.uploadFile 上传文件 调用多次 会导致微信小程序爆内存,微信出现无响应闪退?<template> <view class="content"> <u-button type="warning" @click="chooseVideo">选视频</u-button> <u-button type="warning" @click="delVideo">取消</u-button> </view> </template> <script> import {uploadUrl} from '../../config/env.js'; import {mapGetters} from 'vuex'; export default { data() { return { uploadVideoUrl: uploadUrl + '/uploadapi/video', }; }, methods: { //删除已经上传的视频 delVideo(){ this.uploadVideo = {}; this.uploadPercent = 0; this.uploadVideoPath = ''; this.uploadTask.offProgressUpdate(); this.uploadTask && this.uploadTask.abort(); this.uploadTask = null; this.socketTask && this.socketTask.close({ code: 1000 }); this.socketTask = null; this.heartBeatTimer && clearInterval(this.heartBeatTimer); this.heartBeatTimer = null; }, chooseVideo(){ //选择视频 uni.showLoading({ title: '读取视频中' }); this.uid = this.$u.guid(); uni.chooseVideo({ count: 1, sourceType: ['camera', 'album'], compressed: false, success: (res)=>{ console.log(res); if(res.size > 524288000){ return uni.showToast({ icon: 'none', title: '所选的视频超出500M,无法上传!' }) }; this.uploadPercent = 0; uni.showLoading({ title: '解析视频中' }); this.uploadVideoPath = res.tempFilePath; //上传视频 this.uploadTask = uni.uploadFile({ url: this.uploadVideoUrl, //仅为示例,非真实的接口地址 filePath: res.tempFilePath, name: 'upfile', formData: { uId: this.uid }, timeout: 7200000, success: (uploadFileRes) => { this.uploadVideo = JSON.parse(uploadFileRes.data).data; uni.showToast({ icon: 'none', title: '上传成功,可以发布' }); }, fail: (error)=>{ console.log(error); if(error.errMsg == 'uploadFile:fail abort'){ uni.showToast({ icon: 'none', title: '您取消了视频上传!', duration: 2000 }); }else{ uni.showToast({ icon: 'none', title: '视频上传失败,请重试!', duration: 2000 }); }; //结束上传任务 this.uploadVideo = {}; this.uploadPercent = 0; this.uploadVideoPath = ''; this.uploadTask && this.uploadTask.abort(); this.uploadTask = null; this.socketTask && this.socketTask.close({ code: 1000 }); this.socketTask = null; this.heartBeatTimer && clearInterval(this.heartBeatTimer); this.heartBeatTimer = null; }, complete: () => { //关闭socketTask this.socketTask && this.socketTask.close({ code: 1000 }); this.socketTask = null; this.heartBeatTimer && clearInterval(this.heartBeatTimer); this.heartBeatTimer = null; this.uploadTask && this.uploadTask.abort(); this.uploadTask = null; } }); this.uploadTask.onProgressUpdate((res)=>{ uni.showLoading({ title: '解析进度' + res.progress + '%' }); if(res.progress >= 100){ uni.hideLoading(); this.uploadTask.offProgressUpdate() } }) }, fail: (error) => { uni.hideLoading(); //关闭socketTask this.socketTask && this.socketTask.close({ code: 1000 }); this.heartBeatTimer && clearInterval(this.heartBeatTimer); }, }); }, } } </script> <style lang="scss" scoped> </style> 用的是uniapp框架,虽然调用接口前缀是uni.但是实测换成wx.uploadFile()仍然是会出现这种情况 多次上传之后就出现内存爆满,微信闪退,真机测试的是华为荣耀v30 系统是鸿OS2.0
2021-07-24有个叼毛api,就是告诉你,你的app马上就要死了,做好准备吧
wx.onMemoryWarning(function callback)最佳实践?wx.onMemoryWarning(function callback)官网的说明是:当 iOS/Android 向小程序进程发出内存警告时,触发该事件。触发该事件不意味小程序被杀,大部分情况下仅仅是告警,开发者可在收到通知后回收一些不必要资源避免进一步加剧内存紧张。 对开发者来说,怎么回收一些不必要的资源呢?有API吗?
2021-07-23我是在国内渠道,华为应用市场下载的,我的微信版本是Version7.0.14测试版
微信小程序 小程序直播插件 在华为荣耀V30手机上直播显示有问题?小程序直播插件 华为荣耀V30 观看直播的时候只能看到画面,其他所有控件全部被覆盖在了直播画面之下 不清楚是什么原因
2020-04-30官方工具是比较垃圾的,一般也就调试调试,都是用第三方工具开发的
很好奇真有人用官方的工具写代码?如果有,那这个人脾气一定很好,超级好,永远不会生气那种,
2020-01-06