星点互联edus视频培训演示站

标题: 使用唯一id,生成唯一字符串订单号,唯一邀请码等唯一字符... [打印本页]

作者: 超级玛丽    时间: 2020-12-1 10:46
标题: 使用唯一id,生成唯一字符串订单号,唯一邀请码等唯一字符...
Hashids包用来把整数生成唯一字符串(比如:通过加密解密id来隐藏真实id)
generate short unique ids from integers
官方地址
下面主要介绍golang的用法:go get github.com/speps/go-hashids
  1. package main

  2. import "fmt"
  3. import "github.com/speps/go-hashids"

  4. func main() {
  5.     hd := hashids.NewData()
  6.     hd.Salt = "wozuishuai" // 盐值,可以根据不用的业务,使用不同的盐值
  7.     hd.MinLength = 8 // 生成唯一字符串的最小长度,注意:是最小,不是固定
  8.     h, _ := hashids.NewWithData(hd)
  9.     e, _ := h.Encode([]int{2, 45, 1, 44}) // 参数的都是slice,当我们
  10.     fmt.Println(e)
  11.     d, _ := h.DecodeWithError(e)
  12.     fmt.Println(d)
  13. }
复制代码

  1. 1.hd.Salt = "this is my salt"  盐值,可以根据不用的业务,使用不同的盐值
  2. 2.hd.MinLength = 30 生成唯一字符串的最小长度,注意:是最小,不是固定,生成的有可能比该值要长
  3. 3.h.Encode([]int{45, 434, 1313, 99}),接收参数是slice,我们大多数时候使用唯一id操作,所以只需要传[]int{1},一个元素即可
  4. 4.h.DecodeWithError(e),反序列化出你的原始id,也是slice类型
  5. 5.有兴趣的可以去看看源码包.很简单
复制代码








欢迎光临 星点互联edus视频培训演示站 (http://47.100.112.22/demo/edus/) Powered by Discuz! X3.5