91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序調用圖片安全API的方法

發布時間:2021-01-19 14:18:54 來源:億速云 閱讀:372 作者:小新 欄目:移動開發

小編給大家分享一下微信小程序調用圖片安全API的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

微信小程序審核拒絕,拒絕原因是用戶上傳圖片可能存在違法違規問題,程序必須有審核機制。
解決方法如下(云開發):
config.json

{
  "permissions": {
    "openapi": [
      "security.imgSecCheck"
    ]
  }
}

云函數

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;
  }
}

js

ChooseImage() {
    wx.chooseImage({
      count: 1, 
      sizeType: ['original', 'compressed'], 
      sourceType: ['album'], 
      success: (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 => {
                if (imgRes.result.errCode == '87014') {
                  wx.showToast({
                    title: '圖片含有違法違規內容',
                    icon: 'none'
                  })
                  return
                } else {
                  //圖片正常

                  if (this.data.imgList.length != 0) {
                    this.setData({
                      imgList: this.data.imgList.concat(res.tempFilePaths)
                    })
                  } else {
                    this.setData({
                      imgList: res.tempFilePaths
                    })
                  }


                }

              }
            )
          },
          fail: err => {
            console.log(err)
          }
        })

      }
    });
  },

以上是“微信小程序調用圖片安全API的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涿鹿县| 五大连池市| 延吉市| 久治县| 平邑县| 华宁县| 阿拉善右旗| 万宁市| 论坛| 樟树市| 大田县| 通海县| 黄大仙区| 剑川县| 河源市| 白水县| 马山县| 峡江县| 宝兴县| 漠河县| 大埔区| 通榆县| 潍坊市| 壶关县| 申扎县| 肃北| 昌邑市| 汝阳县| 嵩明县| 桦川县| 崇左市| 昭苏县| 和政县| 长白| 霍林郭勒市| 梁河县| 平邑县| 青冈县| 奈曼旗| 通化市| 剑阁县|