浏览代码

1

herolist
dengbiao 1周前
父节点
当前提交
1c6039ac71
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      app/utils/convert.go

+ 2
- 2
app/utils/convert.go 查看文件

@@ -151,7 +151,7 @@ func interfaceSliceToJSONStyleString(slice []interface{}) string {
case string:
//// 对字符串进行转义并加上双引号
//elements = append(elements, fmt.Sprintf("%q", value))
// TODO::对字符串进行转义并加上双引号
// TODO::只加上双引号,不进行转义
elements = append(elements, `"`+value+`"`)
case bool:
// 直接转换为字符串
@@ -169,7 +169,7 @@ func interfaceSliceToJSONStyleString(slice []interface{}) string {
}

// 使用方括号包裹,并用逗号分隔各个元素
return "[" + strings.Join(elements, ", ") + "]"
return "[" + strings.Join(elements, ",") + "]"
}

func AnyToFloat64(raw interface{}) float64 {


正在加载...
取消
保存