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