mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 21:28:22 +08:00
12 lines
257 B
Go
12 lines
257 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
r := ghttp.PostContent("http://127.0.0.1:8199/test", `<doc><id>1</id><name>john</name><password1>123Abc!@#</password1><password2>123Abc!@#</password2></doc>`)
|
|
fmt.Println(r)
|
|
}
|