小程序
小游戏
企业微信
微信支付
扫描小程序码分享
找了些涉黄图片,errcode都返回的是0,请大佬们看看哪里有问题?初学者,不懂,跪求详解!
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
butter恐怕不能这么赋值,试试:
let buffer = wx.getFileSystemManager().readFileSync(filePath)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
butter恐怕不能这么赋值,试试:
let buffer = wx.getFileSystemManager().readFileSync(filePath)
uploadImgs1: function() {
var that = this;
wx.chooseImage({
count: 1,
sourceType: ['album', 'camera'],
sizeType: ['compressed'],
success: function(res) {
let tu1 = res.tempFilePaths[0];
wx.getFileSystemManager().readFile({
filePath: res.tempFilePaths[0],
success: res => {
let Buffer = res.data
console.log('tupian', res)
wx.cloud.callFunction({
name: 'imgSecCheck',
data: {
value:Buffer
},
success: res => {
console.log('ho', res)
if(res.result.errCode==0){
that.setData({
imgpath1:tu1
});
that.tianjia1()
}
if (res.result.errCode == 87014) {
wx.hideLoading()
wx.showToast({
icon: 'none',
title: '图片含有违法违规内容'
});
// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init({
env:cloud.DYNAMIC_CURRENT_ENV,
})
// 云函数入口函数
exports.main = async (event, context) => {
try{
const imgResult = await cloud.openapi.security.imgSecCheck({
media:{
header: {'content-Type': 'application/octe-stream'},
contentType: 'image/png',
value: Buffer.from(event.value)
}
})
return imgResult;
}catch(err){
return err;
}
}