ids := strings.FieldsFunc(id, func(r rune) bool {
		if r == ',' {
			return true
		}
		return false
	})

  

相关文章: