- camera 使用示例 真机调试也没法预览拍照?
华为mate20pro 微信版本8.0.32
2023-01-12 - camera takePhoto 无法进入success,fail 只能进入complete
[图片] 只能进入complete 而且没有tempImagePath <camera device-position="front" style="width: 180px, height: 180px"></camera> if (!this.context) { this.context = uni.createCameraContext(); } // 指定图片的DataURL(图片的base64编码数据) try{ this.context.takePhoto({ success: (res) => { this.uploadFaceImg(res.tempImagePath); }, fail: (res) => { this.clearTimer(); this.$emit('result', { code: -2, msg: '拍照接口出现错误' }); }, complete: (res) => { console.log(res, 'camera complete') } }); }catch(e){ //TODO handle the exception console.log(e, 'takePhoto') }
2023-01-12 - 请问集成在别人公众号里面的小程序可以使用统一服务消息吗?
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/uniform-message/uniformMessage.send.html
2021-08-27 - input的placeholder在输入框获取焦点是,自动上移,如何解决
- 当前 Bug 的表现(可附[图片] 上截图) - 预期表现 正常就行 - 复现路径 ?? - 提供一个最简复现 Demo <input class='input flex-grow1' placeholder='{{item.default_comment}}' id='{{index}}' placeholder-style='font-size:28rpx;' cursor-spacing='100' bindinput='input' wx:if='{{item.is_comment==0}}' bindfocus='onFcous' bindblur='onBlur'></input>
2018-09-26