Sqids 是一個開源函式庫,可以從數字生成短的唯一識別碼。這些識別碼是 URL 安全的,可以編碼多個數字,並且不包含常見的髒話。 閱讀更多 .
這就是它們的樣子:
快速編碼和解碼範例:
config = Sqids.configure()
id = Sqids.encode(config, [1, 2, 3]) # "86Rf07"
numbers = Sqids.decode(config, id) # [1, 2, 3]
如果識別碼 ID 太短,您可以將它們填充到一定長度:
config = Sqids.configure(minLength=10)
id = Sqids.encode(config, [1, 2, 3]) # "86Rf07xd4z"
numbers = Sqids.decode(config, id) # [1, 2, 3]
透過洗牌字母表創建唯一的識別碼 ID:
config = Sqids.configure(alphabet="k3G7QAe51FCsPW92uEOyq4Bg6Sp8YzVTmnU0liwDdHXLajZrfxNhobJIRcMvKt")
id = Sqids.encode(config, [1, 2, 3]) # "XRKUdQ"
numbers = Sqids.decode(config, id) # [1, 2, 3]
完整文件位於 https://github.com/sqids/sqids-julia
如果您正在尋找原始的 Hashids Julia,您可以在這裡找到: https://github.com/antimon2/Hashids.jl
Sqids 的主要用途是單純形象化的。如果您想在應用中使用識別碼 ID代替數字,Sqids 可能是一個不錯的選擇。