个人案例
- 心形九宫格
心形九宫格
心形九宫格扫码体验
- 水印相机打卡
时间地点水印相机打卡,经纬度水印相机,自定义水印相机。
水印相机打卡扫码体验
- 时间地点丨水印相机打卡
天气以及出行去水印工具
水印相机扫码体验
- 管理员联系不上,如何才能自己解绑web分析?
https://wedata.weixin.qq.com/mp2/user/manager?m=0 [图片]
2023-06-27 - XR-FRAME Beta /粒子 /其他属性和动画 子发射器如何使用?
https://developers.weixin.qq.com/miniprogram/dev/component/xr-frame/particles/attribute.html#%E7%B2%92%E5%AD%90%E5%B1%9E%E6%80%A7%E7%9A%84%E5%8A%A8%E6%80%81%E5%8F%98%E5%8C%96 [图片] 这个 SubEmitterState 需要如何引用?
2023-05-11 - XR-FRAME 如何实现 ar合影,之后保存到手机?
能不能获取 xr-camera 的上下文啊?
2023-04-19 - security.imgSecCheck 检测图片报错404006 ?
错误信息:WAServiceMainContext.js:2 Error: cloud.callFunction:fail -404006 empty poll result base resp. at S (WASubContext.js?t=wechat&s=1666358860430&v=2.24.6:2) at WASubontext.js?t=wechat&s=1666358860430&v=2.24.6:2(env: Windows,mp,1.06.2209070; lib: 2.24.6) [图片] 云函数 // 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) // 云函数入口函数 exports.main = async (event, context) => { try { // 检查图像内容是否违规 if (event.mediaUrl) { let result = await cloud.openapi.security.imgSecCheck({ media: { // header: { // 'Content-Type': 'application/octet-stream' // }, contentType: 'image/png', value: Buffer.from(event.mediaUrl) } }) return result } } catch (error) { return error } } 工具文件: /* 检测文件是否违规 // verison 1.0 */ function checkFile(mediaUrl) { return new Promise((resolve, reject) => { wx.getFileSystemManager().readFile({ filePath: mediaUrl, encoding:'base64', success: file => { wx.cloud.callFunction({ //调用图片检测云函数 name: 'imgSecCheck', data: { mediaUrl: file.data } }).then(res => { let result = res.result console.log(result, '检测结果新版本~~', res) if (result.errCode != 0) { resolve(false) } else { resolve(true) } }) }, fail: err => { console.log("readFail:", err); } }); }) } 调用 getApp().util.checkFile(tempFilePaths).then(checkRes => { if (checkRes) { _this.setData({ src: tempFilePaths }) wx.getFileInfo({ //得到图片信息 filePath: tempFilePaths, success(res) { console.log(res, '压缩之前') } }) _this.changeImg() } else { getApp().util.toast('上传内容违规,请重试~') } })
2022-10-21