wx.miniapp.jumpToGooglePlay
WARNING
请注意,当前域名 https://dev.weixin.qq.com/docs/framework
文档已不维护,请前往微信文档中心 找到对应的新文档继续使用
该接口用于跳至当前 App 的 GooglePlay 下载页
Android SDK >= 1.3.24
注意:App 需上架 Google Play 后方可调用此接口
接口详情
参数
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 是 | 获取后成功回调 |
返回参数
属性 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误提示 |
JSAPI 代码例子
wx.miniapp.jumpToGooglePlay({
success: (res) => {
// 跳转成功
console.log('jumpToGooglePlay success:', res)
}
fail: (res) {
// 本机未安装 Google Play
console.log('jumpToGooglePlay fail:', res)
}
})