在微信公众号接入人工智能(5)

5、接入微信的前端(1)我们先写好网页部分。

接入微信的前端

这里用到了 jq weui

代码如下:

<!DOCTYPE html>
<html>
    <head>
        <title>识别人脸</title>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta
            name="viewport"
            content="width=device-width, initial-scale=1, user-scalable=no"
        />
        <meta
            name="description"
            content="Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
        />
        <link
            rel="stylesheet"
            href="https://cdn.bootcss.com/weui/1.1.3/style/weui.min.css"
        />
        <link
            rel="stylesheet"
            href="https://cdn.bootcss.com/jquery-weui/1.2.1/css/jquery-weui.min.css"
        />
        <script src="https://cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script>
        <script src="https://cdn.bootcss.com/jquery-weui/1.2.1/js/jquery-weui.min.js"></script>
        <script src="https://cdn.bootcss.com/jquery-weui/1.2.1/js/city-picker.min.js"></script>
        <style>
            .toolbar .picker-button,
            .weui-cells_radio .weui-check:checked + .weui-icon-checked:before {
                color: rgb(58, 95, 124);
            }

            body,
            html {
                height: 100%;
                -webkit-tap-highlight-color: transparent;
            }
            .demos-title {
                text-align: center;
                font-size: 34px;
                color: #3cc51f;
                font-weight: 400;
                margin: 0 15%;
            }

            .demos-sub-title {
                text-align: center;
                color: #888;
                font-size: 14px;
            }

            .demos-header {
                padding: 35px 0;
            }

            .demos-content-padded {
                padding: 15px;
            }

            .demos-second-title {
                text-align: center;
                font-size: 24px;
                color: #3cc51f;
                font-weight: 400;
                margin: 0 15%;
            }

            footer {
                text-align: center;
                font-size: 14px;
                padding: 20px;
            }

            footer a {
                color: #999;
                text-decoration: none;
            }
        </style>
        <style>
            /*css */
            * {
                margin: 0;
                padding: 0;
            }
            .title {
                margin: 10px;
                text-align: center;
            }
            .textcenter {
                text-align: center;
            }

            .textleft {
                text-align: left;
            }

            .textright {
                text-align: right;
            }
            body {
                background: #fbfbfb;
            }
            .body {
                padding: 0 0.9em;
                font-size: 0.88em;
                min-width: 300px;
                max-width: 480px;
                margin: 0 auto;
            }
            .box {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                background-color: aquamarine;
                margin: 100px auto;
            }
            .wjj {
                width: 100%;
                height: 100%;
                margin: 0 auto;
                background-repeat: no-repeat;
                background-size: 80% 80%;
                background-position: center;
                background-image: url(img/wjj.png);
            }
            .zxj {
                width: 100%;
                height: 100%;
                margin: 0 auto;
                background-repeat: no-repeat;
                background-size: 80% 80%;
                background-position: center;
                background-image: url(img/zxj.png);
            }
        </style>
    </head>
    <body ontouchstart>
        <div class="weui-tab">
            <div class="weui-tab__bd">
                <div
                    id="tab1"
                    class="weui-tab__bd-item weui-tab__bd-item--active"
                >
                    <div class="title"><h1>识别口罩</h1></div>
                    <div class="box" onclick="yuche()">
                        <div class="wjj"></div>
                    </div>
                    <div class="box">
                        <div class="zxj"></div>
                    </div>
                </div>
                <div id="tab2" class="weui-tab__bd-item">
                    <div class="title"><h1>敬请期待</h1></div>
                </div>
            </div>

            <div class="weui-tabbar">
                <a href="#tab1" class="weui-tabbar__item">
                    <div class="weui-tabbar__icon">
                        <img src="img/icon_nav_article.png" alt="" />
                    </div>
                    <p class="weui-tabbar__label">识别口罩</p>
                </a>
                <a href="#tab2" class="weui-tabbar__item">
                    <div class="weui-tabbar__icon">
                        <img src="img/icon_nav_cell.png" alt="" />
                    </div>
                    <p class="weui-tabbar__label">识别男女</p>
                </a>
            </div>
        </div>
        <div style="display: none">
            <input
                id="uploaderInput"
                class="weui-uploader__input"
                type="file"
                accept="image/*"
                multiple=""
                onchange="compress()"
            />
        </div>
        <script>
            // 对图片进行压缩,并上传
            function compress() {
                var fileObj = document.getElementById('uploaderInput').files[0] //上传文件的对象
                var namefile = fileObj.name
                let reader = new FileReader()
                reader.readAsDataURL(fileObj)
                reader.onload = function (e) {
                    let image = new Image() //新建一个img标签(还没嵌入DOM节点)
                    image.src = e.target.result
                    image.onload = function () {
                        let canvas = document.createElement('canvas'),
                            context = canvas.getContext('2d'),
                            imageWidth = image.width / 3, //压缩后图片的大小
                            imageHeight = image.height / 3,
                            data = ''

                        canvas.width = imageWidth
                        canvas.height = imageHeight

                        context.drawImage(image, 0, 0, imageWidth, imageHeight)
                        var base64 = canvas.toDataURL('image/jpeg')
                        // 去掉url的头,并转换为byte
                        const bytes = window.atob(base64.split(',')[1])
                        // 处理异常,将ascii码小于0的转换为大于0
                        const ab = new ArrayBuffer(bytes.length)
                        const ia = new Uint8Array(ab)
                        for (let i = 0; i < bytes.length; i++) {
                            ia[i] = bytes.charCodeAt(i)
                        }
                        file = new File([ab], namefile, { type: 'image/png' })
                        //file.type = "jpeg";
                        var formData = new FormData()
                        formData.append('File', file)
                        var settings = {
                            url: 'http://localhost:5000/api/discern/kouzhao',
                            method: 'POST',
                            timeout: 0,
                            processData: false,
                            mimeType: 'multipart/form-data',
                            contentType: false,
                            data: formData,
                        }

                        $.ajax(settings).done(function (response) {
                            console.log(response)
                            $.alert(response, '识别结果')
                        })
                        var file = document.getElementById('file')
                        file.value = '' //file的value值只能设置为空字符串
                    }
                }
            }
        </script>
        <script>
            function yuche() {
                $('#uploaderInput').click()
            }
        </script>
    </body>
</html>

到这里就是 接入微信前端 的全部内容了,后续会继续出如何接入微信公众号的 过程

欢迎进qq群交流:704028989

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容