HomeDocs
跳到主要内容

dlt.getUniqueId

简介

获取用户的独一无二的 Id,用于识别用户的身份。

使用限制

基础库从 2.3.0 或更高版本支持。
注意: 本接口的回调依赖于网络情况,建议增加超时逻辑,避免当网络波动时,回调不及时导致业务逻辑等待,影响用户体验。

参数

Object object

属性类型默认值必填说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.success 回调函数

参数

Object res

属性类型说明
successstringtrue-获取成功
uniqueIdstring独一无二的 Id

object.fail 回调函数

参数

Object res

属性类型说明
successstringfalse-获取失败

示例代码

// pages/index/index.js
Page({
getUniqueId() {
dlt.getUniqueId({
success:function(res){
console.log("get uniqueId": res.uniqueId)
}
});
},
});
Privacy agreementDeveloper agreementcontact us: developer_service.mi@transsion.com © 2024 MiniApp. All Rights Reserved.