golang删除字符串最左或最右的字符: 这个在字符串拼接的时候特别有用
//去除最右边字符 strings.TrimLeft(data, ",") //去除最左边字符 strings.TrimRight(data, ",")