问题1

assertionn. 断言,声明;主张,要求;坚持;认定
在使用interface表示任何类型时,如果要将interface转为某一类型,直接强制转换是不行的,例如:
var t interface{} = "abc"
s := string(t)
cannot convert t(type interface {}) to type string: need type assertion

方法

 c.Ctx.WriteString(fmt.Sprintf("%v", count))使用
fmt.Sprintf("%v",value)即可解决

问题2

方法2

		link := fmt.Sprint("%s",conn.RemoteAddr())onlineConns[link] = conn