提供一下截图看看
ios 微信小程序文章分享朋友圈后,点击返回主页,自定义底部导航栏上移,底部留白文章分享朋友圈,点开链接后点击回到小程序,再点击顶部导航栏回到主页,发现底部导航栏上移,底部留白,且底部空白也可以点击跳转
2023-02-15这个提示是代码层的,代码看下咯,接口请求的第三方咯
微信小程序首页显示小程序已过期,请联系平台续费,是微信认证过期了么,还是咋回事?[图片] appid:wxdd8cab9d5dc404f3,有没有大神帮忙看下,pages/index/index节目显示,其他链接还能打开
2023-02-13获取用户定位经纬度然后传给后端进行位置筛选或者本地筛选(本地比较麻烦)
想请问一下小程序是否能指定区域查看并使用?想要开发的小程序只能指定地区访问可以吗,例如我只想让东南亚地区的人能查看并使用我的小程序,是否可行呢,如果可行那发布小程序时怎么操作,需要选择地点吗?
2023-02-13每次绘制的时候都把res.tempFilePath单独复制出来看下是不是空白,如果是空白就是绘制过程太多,延迟放长点试试
uni.canvasToTempFilePath 画布保存成图片部分机型会出现空白?是什么原因?使用uni.canvasToTempFilePath 绘制图片,部分机型会出现空白,ios出现率高,第一次生成图片的时候显示空白,偶尔会出现截取图片部分展示,再次上传图片会展示正常,各位大佬们有遇到过吗?怎么解决的? [图片]上传图片白屏; 在开发没复现,都是在用户那边报的。提供了几个账号图片也没复现。 ctxs.draw( false, setTimeout(() => { uni.canvasToTempFilePath( { canvasId: _this.canvasId, fileType: "jpg", width: originWidth, height: originHeight, quality: 1, success: (res) => { let isTempFilePath = res.tempFilePath; resolve(res.tempFilePath) uni.getFileInfo({ filePath:res.tempFilePath, success:imgInfo => { console.log(imgInfo.size, 'quality 前 图片大小sizesize'); uni.compressImage({ src: isTempFilePath, // 图片路径 quality: 1, // 图片压缩质量,0~100,默认80,仅对jpg有效 success: res => { if (index == 1) { let type = 0 if(this.role == 4 ||this.role == 8){ type = 1 } uploadimg(type, res.tempFilePath).then(rps => { this.zhuanghuoimglist.push(rps.message) }) }else if (index == 2){ uploadimg(type, res.tempFilePath).then(rps => { this.danjuimglist.push(rps.message) }) } }) } } } }) }, fail: (err) => { console.log(err) }, complete: () => { uni.hideLoading() } }, that ) }, 1000) )
2023-02-13可以
小程序是否可以上传合同图片?小程序是否可以上传合同图片、营业执照图片?
2023-02-13如果过期了影响是有的,很多api都不能用了,支付获取手机号那些,如果需要续费可在公众号认证过期后进行续费
小程序认证过期日期时间对小程序上线有影响吗?对使用腾讯云有影响吗?请问,小程序是1月13号通过公众号完成企业认证的,提示说认证过期日期是2023年2月18日。 问题是:小程序认证过期后,会对小程序上线审核有影响吗?如果需要延期的话怎么操作? [图片]
2023-02-13border-radius: 8px;max-height: 200px;max-width: 120px;属性给父级view 图片放里面 然后下面的图片宽度拉满 然后mode=widthFix
image容器内的图片,怎么设置居顶显示?[图片] 如图, mode="aspectFit",怎么让图片在image容器内居顶显示,而不是上下居中? CSS是 border-radius: 8px; max-height: 200px; max-width: 120px;
2023-02-11如果手机网络没问题可以去升级服务器配置
小程序通过video组件播放视频卡顿?视频存储在腾讯云cos服务器,在网页和开发工具播放都没问题,在手机小程序播放就很卡顿,客户那边视频说都压缩到480了,还是卡。 视频大小100m左右,时长三分多钟。 是video组件的问题么???
2023-02-11里面在用循环然后item和index重定向
wx:for 根据一层遍历的index创建的N个数组,如何在二层遍历这N个数组呢?<view> <van-tabs bind:click="onClickTab" title-active-color="red"> <van-tab title="燃气表"> <form bindsubmit="submit"> <view class="formBox" wx:for="{{projeactLsit}}"> <van-cell-group style="display: none;"> <van-field label="id" title-width="7em" placeholder="" name="id{{index + 1}}" model:value="{{item.id}}" required readonly /> </van-cell-group> <view class="wrap"> <view class="img-wrap"> <view class="txt">上传图片</view> <view class="imglist"> <view class="item" wx:for="{{fileList}}" wx:for-index="childindex" wx:for-item="items"> <image src="{{items.url}}" bindtap="clickImg" data-index="{{index}}" alt=""></image> <view class='delete' bindtap='deleteImg' data-item="{{items}}" data-index="{{childindex}}"> <image src="../../../../imgs/del.png"></image> </view> </view> <view class="last-item" wx:if="{{imgs.length >= 1 ? false : true}}" data-index="{{index + 1}}" bindtap="bindUpload"> <text class="sign">+</text> </view> </view> </view> </view> </view> <view class="formBox" style="background:none"> <van-button type="info" form-type="submit" size="large" round> 提 交</van-button> </view> </form> </van-tab> <van-tab title="电表"> </van-tab> </van-tabs> </view>
2023-02-10后台配置downloadFile安全域名啊,开启vConsole是跳过安全域名验证的
wx.downloadFile,预览打开文件失败,真机调试可以正常打开,模拟器也正常打开?downloadFile: function(e) { let url = e.currentTarget.dataset.url; console.log(url) wx.downloadFile({ url: url, success: function (res) { if(res.statusCode != 200) { return false } var Path = res.tempFilePath wx.openDocument({ filePath: Path, showMenu: true, success: function (res) { wx.showToast({ title: '打开成功', duration: 2000 }) } }) }, fail: function (err) { wx.showToast({ title: err+":打开文件失败,请联系管理员", icon: 'error', duration: 2000 }) } }) }, [图片],这是文件路径 预览无法打开,触发fail,但是真机测试和模拟器没有问题,求大佬解答,孩子被这个问题困好长时间了,谢谢
2023-02-09