Created
February 28, 2020 05:17
-
-
Save raphaelsoul/80acaa09398338385d2bb84e1faf706e to your computer and use it in GitHub Desktop.
唤醒口袋铃声小程序示例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 暂时只支持带spinfocode唤醒小程序首页 近期将提供其他页面或url到达能力 届时path参数可能会变 | |
| wx.navigateToMiniProgram({ | |
| appId: '<APPID>', | |
| path: `pages/index/index`, | |
| extraData: { | |
| spinfocode: '<spinfocode>', | |
| }, | |
| envVersion: "release", | |
| success: () => console.log("jump success"), | |
| fail: (e) => console.log("jump failed", e), | |
| complete: () => console.log("jump calling ends"), | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment