# Function: getUserSign
▸ getUserSign(params?
: GetUserSignParams): Promise‹string›
获取用户账号签名信息
description
注意⚠️:如果有需要补充说明的增加description标签进行说明
example
// 在头部引入账号模块
import { accountSystem } from "@timi/mogs-sdk";
...
// 获取用户签名
accountSystem.getUserSign({
fail(err){
console.error(err);
},
success(res){
console.log('getUserSign',res);
// 签名解密
},
complete(){
console.log('complete');
}
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
throws
{@link MogsError}
# 参数:
属性 | 类型 | 描述 |
---|---|---|
params? | GetUserSignParams | 获取用户签名信息入参,params参数结构查看GetUserSignParams |
GetUserSignParams
属性 | 类型 | 描述 |
---|---|---|
complete? | Method | 操作完成时(成功或失败),均会调用该回调函数 |
fail? | Method | 操作失败时,调用该回调函数 |
success? | Method | 操作成功时,调用该回调函数 |
# 返回值:
Promise‹string›
← getAccount Account →