dlt.getUniqueId
简介
获取用户的独一无二的 Id,用于识别用户的身份。
使用限制
基础库从 2.3.0
或更高版本支持。
注意:
本接口的回调依赖于网络情况,建议增加超时逻辑,避免当网络波动时,回调不及时导致业务逻辑等待,影响用户体验。
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
object.success 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
success | string | true-获取成功 |
uniqueId | string | 独一无二的 Id |
object.fail 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
success | string | false-获取失败 |
示例代码
// pages/index/index.js
Page({
getUniqueId() {
dlt.getUniqueId({
success:function(res){
console.log("get uniqueId": res.uniqueId)
}
});
},
});