亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

微信小程序調用圖片安全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

六安市| 枝江市| 什邡市| 焦作市| 宣威市| 侯马市| 高平市| 天津市| 伊吾县| 栾川县| 闽清县| 宜君县| 寿宁县| 水城县| 萝北县| 遂平县| 通州区| 松溪县| 岳池县| 广宗县| 新宁县| 偏关县| 怀柔区| 灵宝市| 临夏县| 兴城市| 黎川县| 定西市| 合水县| 油尖旺区| 凤翔县| 安岳县| 望谟县| 洪江市| 桐城市| 青龙| 会昌县| 辽中县| 青川县| 卢龙县| 炎陵县|