在 golang 中,参数和返回值之间往往涉及 int、string、[]、map 等之间的转换。
如果是手动去处理,一容易出错,二不能兼容多数类型,比较麻烦。
使用 cast,能够让代码更健壮、可维护性也更高。
Ref:https://github.com/spf13/cast
Link:https://www.cnblogs.com/farwish/p/13063524.html