javascript - 微信jssdk调用的问题,明明已经已经注入成功了,为何这样

php中文网
发布: 2016-07-06 13:51:41
原创
1457人浏览过

html>

javascript - 微信jssdk调用的问题,明明已经已经注入成功了,为何这样

<code>public constructor (options?: BodyConfig, page?: JQuery) {

        var _self = this;

        if (options == null) { return; }

        if (options.jsApiList != null) {

            options.jsApiList.unshift.apply(wecaht_opt.jsApiList, options.jsApiList);

        }

        wecaht_opt = $.extend(true, wecaht_opt, options || {});

        if (wecaht_opt.appId == null || wecaht_opt.timestamp == null || wecaht_opt.nonceStr == null || wecaht_opt.signature == null) {

            console.log('wx.options is null');
            return;

        }

        wx.config(wecaht_opt);

        console.log(wecaht_opt);

        wx.ready(function (res) {

            console.log('wx is ready');

            wx.showOptionMenu();

            wx.hideMenuItems({

                menuList: [
                    'menuItem:copyUrl',
                    'menuItem:readMode',
                    'menuItem:openWithQQBrowser',
                    'menuItem:openWithSafari',
                    'menuItem:share:QZone',
                    'menuItem:share:qq',
                    'menuItem:share:weiboApp',
                    'menuItem:share:facebook',
                    'menuItem:favorite'
                ] // 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3

            });

            var _title = page.data('share-title');
            var _desc  = page.data('share-desc');
            var _link  = page.data('share-link');
            var _img   = page.data('share-img');

            var timeline: MyBodyMenuShareTimeline = {
                title: _title,
                link: _link,
                imgUrl: _img,
                success: function () {
                    console.log('已分享');
                },
                cancel: function (res) {
                    console.log('已取消');
                },
                fail: function (res) {
                    console.log(JSON.stringify(res));
                }
            }

            var appmessage: MyBodyMenuShareAppMessage = {
                title: _title,
                desc: _desc,
                link: _link,
                imgUrl: _img,
                success: function () {
                    console.log('已分享');
                },
                cancel: function (res) {
                    console.log('已取消');
                },
                fail: function (res) {
                    console.log(JSON.stringify(res));
                }
            }

               wx.onMenuShareTimeline(timeline);
            wx.onMenuShareAppMessage(appmessage);

            page.trigger('MrWechatReady');

        });

        wx.error(function (error) {

            console.log('wx is error');

            page.trigger('MrWechatError');

        });

    }</code>
登录后复制

javascript - 微信jssdk调用的问题,明明已经已经注入成功了,为何这样

微信 WeLM
微信 WeLM

WeLM不是一个直接的对话机器人,而是一个补全用户输入信息的生成模型。

微信 WeLM 33
查看详情 微信 WeLM
相关标签:
微信app下载
微信app下载

微信是一款手机通信软件,支持通过手机网络发送语音短信、视频、图片和文字。微信可以单聊及群聊,还能根据地理位置找到附近的人,带给大家全新的移动沟通体验,有需要的小伙伴快来保存下载体验吧!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号