加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
safe_url.go 471 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-11-21 23:13 . 移除中文注释
package dongle
import (
"net/url"
)
// BySafeURL encodes as safe url.
func (e Encoder) BySafeURL() Encoder {
if len(e.src) == 0 || e.Error != nil {
return e
}
e.dst = string2bytes(url.QueryEscape(bytes2string(e.src)))
return e
}
// BySafeURL decodes as safe url.
func (d Decoder) BySafeURL() Decoder {
if len(d.src) == 0 || d.Error != nil {
return d
}
dst, err := url.QueryUnescape(bytes2string(d.src))
d.dst, d.Error = string2bytes(dst), err
return d
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化