mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
18 lines
537 B
Go
18 lines
537 B
Go
|
// Copyright 2017 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
|
|||
|
//
|
|||
|
// This Source Code Form is subject to the terms of the MIT License.
|
|||
|
// If a copy of the MIT was not distributed with this file,
|
|||
|
// You can obtain one at https://gitee.com/johng/gf.
|
|||
|
|
|||
|
package ghttp
|
|||
|
|
|||
|
import "gitee.com/johng/gf/g/encoding/gurl"
|
|||
|
|
|||
|
// 构建请求参数,将参数进行urlencode编码
|
|||
|
func BuildParams(params map[string]string) string {
|
|||
|
var s string
|
|||
|
for k, v := range params {
|
|||
|
s += k + "=" + gurl.Encode(v)
|
|||
|
}
|
|||
|
return s
|
|||
|
}
|