1 Star 0 Fork 0

NilOrganization / wxpay

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cdata.go 291 Bytes
一键复制 编辑 原始数据 按行查看 历史
Keng 提交于 2019-09-21 17:54 . update code
package wxpay
import "encoding/xml"
// https://segmentfault.com/q/1010000008231680
// CDATA ...
type CDATA string
// MarshalXML ...
func (c CDATA) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
return e.EncodeElement(struct {
string `xml:",cdata"`
}{string(c)}, start)
}
Go
1
https://gitee.com/nilorg/wxpay.git
git@gitee.com:nilorg/wxpay.git
nilorg
wxpay
wxpay
master

搜索帮助