QQ mac版本:支持
QQ windows版本:支持
小程序支持两种添加彩签方式:
<button open-type="addColorSign">打开授权设置页</button>
)qq.addRecentColorSign
。两者区别:
调用前需要进行 用户授权:scope.recentColorSign
添加当前小程序页面到最近浏览彩签,需要授权基础库 1.20.0 开始支持。
提示:在手 Q 8.9.0 前的版本,当系统未授予手 Q 悬浮穿权限时,每次调用该接口都会弹出系统授权窗口。自手 Q 8.9.0 起交互调整如下:
属性 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
query | String | 否 | 当前页面的查询参数 | 做为点击最近彩签打开的小程序页面的启动参数,如 a=1&b=2 |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
qq.addRecentColorSign({
query: 'a=1&b=2',
success(res) {
console.log('addRecentColorSign success: ', res)
},
fail(err) {
console.log('addRecentColorSign fail: ', err)
},
complete(res) {
console.log('addRecentColorSign complete: ', res)
},
})