PrefaceWeChat Mini Programs provide new open capabilities! It finally opens the function of embedding HTML pages in mini programs! Starting from WeChat Mini Program Basic Library 1.6.4, we can place a <web-view> component in the mini program to link our HTML page. Before this, we had no way to integrate our existing HTML programs (such as HTML5 article system, shopping mall system, etc.) into the mini program. We could only develop a new set using the mini program. Now with <web-view>, we can easily integrate these web systems, which reduces our workload considerably. Tips: Personal mini programs do not currently support web-viwe references to H5. You also need to configure the H5 domain name as a business domain name in the mini program management background. Here’s how1. Directly introduce the page address;
url is the address to be redirected. You can use encodeURIComponent to encode the url, and the mini program uses decodeURIComponent to decode it. You can use ? and & to carry parameters in the url, and the mini program can directly receive parameters in option in onLoad; 2. Set the top of the mini program to be transparent; The H5 page embedded in the web-view cannot be set to be transparent, and you can only change the color of the top of the page;
3. The applet jumps to the H5 page Note: After using redirectTo to jump to the H5 page, all embedded H5 pages have no back button, and there is only one back to homepage button on the left. 4. H5 jumps to the mini program page You need to introduce wx.miniProgram.switchTab({ url:url}); // Jump to the mini program tabbar page, parameters cannot be passed wx.miniProgram.navigateTo({ url:url,query:{//fill in parameters}});//jump to the mini program non-tabbar page, you can pass parameters For other jumps, refer to the figure below. 5. H5 uses bindmessage to pass parameters to the mini program Tips: When using bindmessage, the parameter transfer can only be triggered when the user clicks the back or share button of the mini program or the H5 page embedded in the mini program is destroyed, otherwise it will not be triggered. 6. H5 uses the interface of other mini programs, you can refer to the API. Since I haven’t involved it myself, I will give you a link for reference Reference link: developers.weixin.qq.com/miniprogram… SummarizeThis is the end of this article about embedding WeChat applet webView into H5. For more relevant WeChat applet webView embedding into H5 content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to deploy Angular project using Docker
>>: MySQL 5.7.17 and workbench installation and configuration graphic tutorial
Table of contents 1. Docker enables remote access...
In MySQL, databases correspond to directories wit...
Kernel: [root@opop ~]# cat /etc/centos-release Ce...
Sometimes you just want to test an app but don’t ...
1. Multiple calls to single arrow Once a single a...
You may encounter the following problems when ins...
Preface In WeChat applet development (native wxml...
Passive Check With passive health checks, NGINX a...
Normally, when you run a command in the terminal,...
Achieve results Implementation Code html <div ...
Preface We need to retrieve certain data that mee...
Table of contents 01 Container consistency 02 Con...
What does Ctrl+c, Ctrl+d, Ctrl+z mean in Linux? C...
1. The difference between the command > and &g...
Routing configuration commands under Linux 1. Add...