我想转换一个bool叫isExist到string(true或false使用),string(isExist)但它不能做的工作。在 Go 中执行此操作的惯用方法是什么?
bool
isExist
string
true
false
string(isExist)
使用 strconv 包
文档
strconv.FormatBool(v)
func FormatBool(b bool) string FormatBool 根据b的值返回“真”或“假”