使用唯一id,生成唯一字符串订单号,唯一邀请码等唯一字符串,并可

2020-11-13  本文已影响0人  吃馍夹菜

Hashids包

用来把整数生成唯一字符串(比如:通过加密解密id来隐藏真实id)

generate short unique ids from integers
官方地址

下面主要介绍golang的用法:

go get github.com/speps/go-hashids
package main

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

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

注意:

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

猜你喜欢

热点阅读