- wx.uploadFile上传视频时,怎么把封面和视频做关联一起上传?
wx.uploadFile上传视频时,怎么把封面和视频做关联一起上传
2022-10-19 - 预览图片时怎么展示图片的文字描述信息?
wx.previewImage
2022-10-18 - image标签src加载网络图片,真机上无法展示,模拟器是可以的,是什么问题?
<image class="image" src="https://tic.jsti.com.oos-jssz.ctyunapi.cn/2022-05-24/1653384571.png?Signature=PwTxaRVV%2Bb0prZahMvlBLrYF%2BsQ%3D&AWSAccessKeyId=0903353764ac9da732e4&Expires=1924963200"></image> 网络地址是用的电信云的存储服务返回的地址
2022-05-25 - editor的id能为啥不能变啊?
editor的id能为啥不能变啊?
2021-11-17 - chooseImage会自动压缩图片?
这个wx.chooseImage会自动压缩图片大小?? onSelect: function(e) { var max = this.data.max; wx.chooseImage({ count: 1, success (res) { var path = res.tempFilePaths[0]; var size = res.tempFiles[0].size; console.log(res,'===') if (size > 1024 * 1024 * max) { wx.showToast({ icon:'none', title: '上传图片不能大于' + max + 'M', }) return; } page.setData({ image : path }) } }); },
2021-11-16 - 可以给editor的内容添加点击事件吗?
可以给编辑器里面的内容添加点击事件吗?类似这样的功能 this.editorCtx.setContents({ // delta: that.data.content, html:`<p bindtap="click">123123</p>`, success: function (res) { console.log(res); }, fail: function (error) { console.log(error); }, });
2021-11-08 - editor种可以使用form吗?
我需要在editor富文本种,创建一个投票功能,具体可以怎么实现呀
2021-11-08