package main
import (
"encoding/json"
"fmt"
"testProject/test"
)
func main() {
user := test.User{}
user.Address = "sadsda"
user.Password = "123456"
user.UserName = "仙士可"
bytes, _ := json.Marshal(user)
fmt.Println(string(bytes))
}本文为仙士可原创文章,转载无需和我联系,但请注明来自仙士可博客www.php20.cn