Gathering detailed insights and metrics for mazey-wechat-launch-app
Gathering detailed insights and metrics for mazey-wechat-launch-app
Gathering detailed insights and metrics for mazey-wechat-launch-app
Gathering detailed insights and metrics for mazey-wechat-launch-app
npm install mazey-wechat-launch-app
Typescript
Module System
Node Version
NPM Version
TypeScript (80.32%)
JavaScript (19.55%)
Shell (0.14%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
108 Commits
1 Watchers
10 Branches
1 Contributors
Updated on Apr 26, 2025
Latest Version
2.3.4
Package Id
mazey-wechat-launch-app@2.3.4
Unpacked Size
222.03 kB
Size
77.21 kB
File Count
8
NPM Version
6.14.18
Node Version
14.21.3
Published on
Mar 27, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
46
生成微信(WeChat/Weixin)跳转 App 所需要的按钮,经过灵活配置,可支持生成单/多个按钮。
Table of Contents
使用 npm 安装 mazey-wechat-launch-app:
1npm install mazey-wechat-launch-app --save
1import LAUNCH_APP from 'mazey-wechat-launch-app'; 2 3const options = { 4 weixinJsSdkTicket: 'bxLdikRXVb', 5 launchContainerQuery: '.example-btn', 6 serviceAccountAppId: 'wx123', 7 openPlatformMobileAppId: 'wx456', 8 extInfo: 'example://example/example', 9}; 10const app = LAUNCH_APP(options); 11app.start();
<div class="example-btn><span>打开</span></div>
生成的 HTML 结构如下:
1<div class="example-btn mazey-launch-app-tag-0"> 2 <span>打开</span> 3 <wx-open-launch-app 4 id="mazey-launch-app-btn-prefix-mazey-launch-app-tag-0" 5 appid="wx456" 6 extinfo="example://example/example" 7 style="z-index: 99; position: absolute; width: 100%; height: 100%; opacity: 1; background: transparent; overflow: hidden; left: 0;" 8 > 9 <script type="text/wxtag-template"> 10 <style>.mazey-launch-app-inner-btn { opacity: 0; width: 100%; height: 100%; backgroud: transparent; color: #300f54; border: none; box-sizing: border-box; text-align: center; vertical-align: middle; }</style> 11 <button class="mazey-launch-app-inner-btn">Launch App <br /><br /><br /></button> 12 </script> 13 </wx-open-launch-app> 14</div>
注意:本项目依赖 WeChat JS-SDK,请确保已经引入,程序会在初始化的时候探测 window.wx
。
1<script type="text/javascript" src="//res.wx.qq.com/open/js/jweixin-1.6.0.js"></script> 2<script type="text/javascript" src="//cdn.jsdelivr.net/npm/mazey-wechat-launch-app@latest/lib/launch-app.min.js"></script> 3<script> 4 var options = { 5 weixinJsSdkTicket: 'bxLdikRXVb', 6 launchContainerQuery: '.example-btn', 7 serviceAccountAppId: 'wx123', 8 openPlatformMobileAppId: 'wx456', 9 extInfo: 'example://example/example', 10 }; 11 var app = window.LAUNCH_APP(options); 12 app.start(); 13</script>
提示:如果项目里面已经使用了 jQuery、js-sha1、mazey 依赖库,可以使用体积更小的版本 v2.1.4
。
参数 | 说明 | 类型 | 值 |
---|---|---|---|
weixinJsSdkTicket | jsapi_ticket 公众号用于调用微信 JS 接口的临时票据 | string | (必填)例如:bxLdikRXVb |
launchContainerQuery | selectors 有效的 CSS 选择器字符串,通常是填充按钮的父容器 | string | (必填)例如:.example-btn , #example-btn |
serviceAccountAppId | 公众号的唯一标识 AppId | string | (必填)例如:wx123 |
openPlatformMobileAppId | 开放平台内所需跳转的移动应用的 AppId | string | (可选)例如:wx456 |
extInfo | extinfo 跳转所需额外信息 | string | (可选)例如:example://example/example |
launchBtnStyle | 按钮内联样式 | string | (可选)例如:top:0;right:0;bottom:0;left:0; |
launchBtnText | 按钮文字 | string | (可选)例如:打开 App |
方法 | 说明 | 类型 |
---|---|---|
start | 生成 | function |
update | 更新 | function |
destroy | 销毁 | function |
1. 为什么微信里面通过分享卡片能唤起,直接打开链接却无法唤起的?
截止 2023-08-10,只有微信 SDK 生成的卡片和服务号推送的消息才能唤起 App。
2. 如何修改按钮样式?
方法一(推荐):
如官方所说,模版的样式是和页面隔离的,建议将此处透明的开放标签覆盖在原按钮上,这样就可以保留原按钮的样式,同时又可以实现点击跳转。
方法二:
通过 launchBtnStyle
参数添加内联样式,通过 launchBtnText
参数修改按钮文字。
3. 如何确保满足唤起的所有前置条件?
(1)开放平台、服务号已认证,并且主体一致;
(2)开放平台绑定服务号;
(3)开放平台绑定移动应用,并且已认证;
(4)服务号绑定域名。
Dependencies | Version |
---|---|
Node.js | v14.21.3 |
Install Dependencies:
1npm i
Development:
1npm run dev
Build:
1npm run build
This software is released under the terms of the MIT license.
No vulnerabilities found.
No security vulnerabilities found.