search
HomeWeb Front-endJS TutorialUse jQuery.wechat to build WeChat WEB application_jquery

Because recently my products have to be promoted in the WeChat public account and need to provide some meaningful functions, so I was forced to embark on the road of no return by supporting WeChat.

As we all know, Tencent is such a magical company. Their products have achieved great success in business, but the documentation is really hard to compliment. I can’t find the real documentation about Noda’s public account development platform. Some of the official documents on web development are just individual examples, and the rest... Haha, there is something called Developer Exchange and Mutual Assistance.

After reading the picture above, do you have the feeling that a bunch of people are desperately trying to know what happened, but there is no official statement! o(∩_∩)o Haha

Having said so much, let’s quickly get to the point. What I want to talk about in this issue is jQuery.wechat, which I wrote after struggling in pain, a jQuery.plugin based on jQuery.promise that provides a unified API. Hope it helps everyone.

First of all, it’s pretty simple to install

Copy code The code is as follows:

bower install --save jquery-wechat

If you don’t use bower and download and unzip it yourself from Github, it’s the same thing!

Loading, it’s as natural as water

Copy code The code is as follows:



If you use lazy loading technology such as amd and cmd, you must be an expert. You don’t need me to teach you how to configure it, right?

Use - simple, easy, unified and fun!

Enable jQuery.wechat functionality
$.wechat.enable(); //So easy!

Because the entire plugin is based on jQuery.promise, you can also give it a chain:

Copy code The code is as follows:

$.wechat.enable().done(function(){
alert('activated successfully');
}).fail(function(){
alert('Activation failed');
});

Considering the current wide application of single page technology (SPA), the design of tool classes must consider the enable/disable mechanism, otherwise unknown errors may occur.

Hide/show menu

Copy code The code is as follows:

$.wechat.hideMenu(); //Hide menu
$.wechat.showMenu(); //Show menu

After enabling jQuery.wechat, you can call methods such as hideMenu at will without writing other methods into the enabled done callback. The implementation principle of jQuery.wechat is that if jQuery.wechat has not been successfully enabled, all operations will be queued. Once enabled successfully, they will be executed sequentially; if the enablement fails, they will never be executed.

Hide/show bottom toolbar
$.wechat.hideToolbar(); //Hide the bottom toolbar
$.wechat.showToolbar(); //Show bottom toolbar

Open the QR code scanning interface
$.wechat.scanQRcode();

Open the image preview tool

Copy code The code is as follows:

$.wechat.preview({
Current: 'http://xxx/img/pic001.jpg', //After entering preview mode, display this picture directly
urls: [
          'http://xxx/img/pic001.jpg',
         'http://xxx/img/pic002.jpg',
         'http://xxx/img/pic003.jpg',
          'http://xxx/img/pic004.jpg',
         'http://xxx/img/pic005.jpg',
         'http://xxx/img/pic006.jpg'
] ]                                                                                                                                                                                             });

Get network status


Copy code The code is as follows:
$.wechat.getNetworkType().done(function(response) {
$('#network').text(response.split(':')[1]);
});

The response format is as follows:


Copy code The code is as follows:
network_type:wifi wifi network
network_type:edge Non-wifi, including 3G/2G
network_type:fail Network disconnection
network_type:wwan (2g or 3g)

Modify sharing format

Every time I see a message shared by someone else’s app, it comes with a beautiful thumbnail, appropriate title and description. What’s more, there is a line of small text below the message indicating who sent the message; and then Look at the message you shared, a blue default blank picture with a mismatched title. Do you wonder what logic put them in?

Fortunately, let’s solve this problem now:


Copy code The code is as follows:
$.wechat.setShareOption({
appid: 'xxxx',                                                      img_width: '60',
img_height: '60',
img_url: window.location.toString() 'img/demo.jpg', //Thumbnail
title: 'DEMO', //Title
Desc: 'The description is set from $.wechat.setShareOption', //Description
Link: function() {
Return window.location.toString(); //After the message is shared, the user clicks the link address that the message opens
},
​ callback: function(response) {
alert(response); //The callback function after sharing, the common ones are success and cancellation
}
});

Please refer to the following screenshots for details:


This sharing format change will affect the four functions of sending to friends, sharing to Moments, sharing to Weibo, and sending emails. After setting, click the menu button in the upper right corner to open the menu, select any one of the four items mentioned above, and you will see the effect of the change

Close current page

Copy code The code is as follows:

$.wechat.closeWindow();

Disable jQuery.wechat mechanism

Copy code The code is as follows:

$.wechat.destroy();

After deactivation, all functions will automatically reset back to their initial state
This function is commonly used in single page applications (SPA)

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
VUE3入门教程:使用Webpack进行打包和构建VUE3入门教程:使用Webpack进行打包和构建Jun 15, 2023 pm 06:17 PM

Vue是一款优秀的JavaScript框架,它可以帮助我们快速构建交互性强、高效性好的Web应用程序。Vue3是Vue的最新版本,它引入了很多新的特性和功能。Webpack是目前最流行的JavaScript模块打包器和构建工具之一,它可以帮助我们管理项目中的各种资源。本文就为大家介绍如何使用Webpack打包和构建Vue3应用程序。1.安装Webpack

使用CMake构建Linux内核的配置指南使用CMake构建Linux内核的配置指南Jul 06, 2023 pm 02:46 PM

使用CMake构建Linux内核的配置指南概述在Linux开发中,构建和配置内核是一个重要的环节。对于大多数人来说,使用Kconfig和Makefile是最常见的配置方式。然而,使用CMake来构建和配置Linux内核也是一个灵活且强大的选择。本文将介绍如何使用CMake来构建和配置Linux内核,并附上一些代码示例。安装CMake首先,我们需要安装CMak

如何使用Golang构建Web应用程序如何使用Golang构建Web应用程序Jun 24, 2023 pm 02:46 PM

在当前的互联网时代,Web应用程序已成为了人们日常生活中不可或缺的一部分,而且在各种应用场景下都有广泛的应用。无论是电商网站、社交媒体、在线教育平台,还是各种SaaS应用程序,都离不开Web应用程序。随着技术的不断更新迭代,Golang越来越受到Web应用程序开发者的喜爱,下面我们就快速了解如何使用Golang构建Web应用程序。一、为什么使用Golang?

CakePHP中间件:快速构建可扩展的Web应用程序CakePHP中间件:快速构建可扩展的Web应用程序Jul 28, 2023 am 11:33 AM

CakePHP中间件:快速构建可扩展的Web应用程序概述:CakePHP是一个流行的PHP框架,被广泛应用于Web应用程序的开发。其提供了许多功能强大的工具和功能,其中包括中间件。中间件可以帮助我们快速构建和扩展Web应用程序,提高代码的可读性和可维护性。什么是中间件:中间件是在请求被派发给控制器之前或之后执行的一系列操作。它们可以完成许多任务,如身份验证、

如何使用PHP构建智能医疗系统如何使用PHP构建智能医疗系统Jun 11, 2023 pm 05:32 PM

在当今科技迅猛发展的时代,智慧医疗逐渐成为医疗行业的新趋势,而医疗健康的数据化和智能化,更是将如何使用PHP构建智能医疗系统变得尤为重要。本文将介绍PHP如何应用于医疗系统的开发,并结合实例详细探讨。一、智能医疗系统的功能特点首先了解智能医疗系统的主要功能特点,有助于我们更加清晰的构建医疗系统。智能医疗系统的主要特点包括:1、大数据分析预测功能:通过对医学数

使用JavaScript构建在线计算器使用JavaScript构建在线计算器Aug 09, 2023 pm 03:46 PM

使用JavaScript构建在线计算器随着互联网的发展,越来越多的工具和应用开始以在线形式出现。其中,计算器是一类被广泛使用的工具之一。本文将介绍如何使用JavaScript构建一个简单的在线计算器,并提供代码示例。在开始之前,我们需要了解一些基本的HTML和CSS知识。计算器的界面可以使用HTML的表格元素来构建,然后用CSS进行样式设计。以下是一个基本的

在PHP中构建物业管理系统在PHP中构建物业管理系统Jun 11, 2023 am 10:34 AM

随着城市化进程的不断加快和人民生活水平的不断提高,物业管理行业也逐渐成为一个重要的领域。目前,物业管理系统已经成为了物业公司必备的工具,它可以帮助物业公司提高管理效率,优化服务质量,提升客户满意度。本文将介绍在PHP中构建物业管理系统的相关知识。一、物业管理系统的基本功能1.物业收费管理物业收费管理是物业管理系统的核心功能之一,它涉及到物业管理公司对于物业费

基于Swoole构建实时股票交易系统基于Swoole构建实时股票交易系统Aug 08, 2023 am 09:01 AM

基于Swoole构建实时股票交易系统随着互联网技术的发展,股票交易成为了越来越多个人投资者和机构投资者的选择。为了更好地满足投资者的需求,提供更实时、高效的股票交易服务,我们可以借助Swoole这个高性能的PHP扩展来构建一个实时股票交易系统。Swoole是一个基于C语言扩展开发的PHP网络通信框架,它提供了异步、并发、高性能的网络编程特性。使用Swoole

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment