常用类型及数据操作方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
185 B

  1. package helper
  2. import (
  3. "testing"
  4. )
  5. func Test_HttpBuildQuery(t *testing.T) {
  6. list := map[string]string{"a": "b", "c": "cdd", "b": ""}
  7. ret := HttpBuildQuery(list)
  8. t.Log(ret)
  9. }