我想转换一个bool叫isExist到string(true或false使用),string(isExist)但它不能做的工作。Go中惯用的方式是什么?
bool
isExist
string
true
false
string(isExist)
使用strconv包
docs
strconv.FormatBool(v)
func FormatBool(b bool)字符串Formatbool 根据b的值返回“ true”或“ false”