0 Star 0 Fork 615

李明 / gf

forked from John / gf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
url.go 511 Bytes
一键复制 编辑 原始数据 按行查看 历史
John 提交于 2018-01-03 10:38 . 完善包注释,便于godoc管理
// 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.
// URL编码
package gurl
import "net/url"
// url encode string, is + not %20
func Encode(str string) string {
return url.QueryEscape(str)
}
// url decode string
func Decode(str string) (string, error) {
return url.QueryUnescape(str)
}
Go
1
https://gitee.com/limingsky/gf.git
git@gitee.com:limingsky/gf.git
limingsky
gf
gf
c9a36a8224f1

搜索帮助