云服务器代码:
// 云函数入口文件
const cloud = require(‘wx-server-sdk’)
cloud.init()
// 云函数入口函数
exports.main = async (event, context) => {
const {value} = event;
try {
const res = await cloud.openapi.security.imgSecCheck({
media: {
header: {‘Content-Type’: ‘application/octet-stream’},
contentType: ‘image/png’,
value:Buffer.from(value)
}
})
return res;
} catch (err) {
return err;
}
}
本地函数:
wx.chooseImage({count: 1}).then((res) => {
if(!res.tempFilePaths[0]){
return;
}
console.log(JSON.stringify(res))
if (res.tempFiles[0] && res.tempFiles[0].size > 1024 * 1024) {
wx.showToast({
title: ‘图片不能大于1M’,
icon: ‘none’
})
return;
}
wx.getFileSystemManager().readFile({
filePath: res.tempFilePaths[0],
success: buffer => {
console.log(buffer.data)
wx.cloud.callFunction({
name: ‘checkImg’,
data: {
value: buffer.data
}
}).then(
imgRes => {
console.log(JSON.stringify(imgRes))
if(imgRes.result.errorCode == ‘87014’){
wx.showToast({
title:‘图片含有违法违规内容’,
icon:‘none’
})
return
}else{
//图片正常
}
}
)
},
fail: err => {
console.log(err)
}
}
)
我相信做出来的人很多,但是没有分享出来,我今天分享出来就是为了避免更多程序员不要在这种简单的问题上,浪费太多的时间,我就浪费了很多时间,兼职太坑爹了
谢谢楼主
楼主,请问header: {‘Content-Type’: ‘application/octet-stream’}这句话是做什么用的?