Taro.applyAddToMyApps(option)
申请用户将本小程序添加到下拉页面中“我的小程序”当中,手Q8.9.13及以上版本支持
支持情况:
类型
(option: Option) => void
参数
参数 | 类型 |
---|---|
option | Option |
Option
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
complete | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
fail | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用失败的回调函数 |
success | (res: SuccessCallbackResult) => void | 否 | 接口调用成功的回调函数 |
SuccessCallbackResult
参数 | 类型 | 说明 |
---|---|---|
confirm | boolean | true 代表用户选择了同意 |
cancel | boolean | true 代表用户选择了不同意 |
示例代码
Taro.applyAddToMyApps({
success(res) {
if (res.confirm) {
// 用户同意添加
}
if (res.cancel) {
// 用户不同意添加
}
// 原则上,confirm和cancel是互斥的
}
})