初级会员
  • 第 40837 位会员
  • busgo
  • 466862016@qq.com
  • 2019-07-26 09:48:06
  • Offline
  • 56 12

最近发布的主题

最近的评论

  • 这样? ``` go func CompressSQL(sqlStatement string) string { // Remove leading and trailing white spaces sqlStatement = strings.TrimSpace(sqlStatement) // Replace multiple spaces and newlines with a single space sqlStatement = regexp.MustCompile(`\s+`).ReplaceAllString(sqlStatement, " ") // Remove comments starting with '--' or '/*' and ending with '*/' sqlStatement = regexp.MustCompile(`--.*$|/\*.*?\*/`).ReplaceAllString(sqlStatement, "") // Remove unnecessary spaces around parentheses sqlStatement = regexp.MustCompile(`\s*([(),])\s*`).ReplaceAllString(sqlStatement, "$1") return sqlStatement } ```
  • 老哥你这用的 **Style** 不对吧 依赖注入 是对象直接依赖注入一次即可完成 为啥你每次用到对应的依赖对象的时候直接 执行Invoke呢?
  • 248434199@qq.com 谢谢大佬
  • 评论了博文 人口贩卖贴
    年底了都
  • 演示地址:http://122.51.106.217:6579