本文将演示如何使用Go语言中encoding/json
package,结合建立一台http-server响应对JSON数据对象进行编码与解码的操作。
JSON简介:因为XML整合到HTML中各个浏览器实现的细节不尽相同,Douglas Crockford和 Chip Morningstar一起从JS的数据类型中提取了一个子集,作为新的数据交换格式,因为主流的浏览器使用了通用的JavaScript引擎组件,所以在解析这种新数据格式时就不存在兼容性问题,于是他们将这种数据格式命名为 “JavaScript Object Notation”,缩写为 JSON。来自:新消息频道
cp /share/tar/go1.12.9.linux-amd64.tar.gz .
tar -C /usr/local -xzvf go1.12.9.linux-amd64.tar.gz
echo export PATH=$PATH:/usr/local/go/bin >> /etc/profile
source /etc/profile
go version
#使用vim创建json.go文件,内容如下
package main
import (
"encoding/json"
"fmt"
"net/http"
)
type User struct {
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Age int `json:"age"`
}
func main() {
http.HandleFunc("/decode", func(w http.ResponseWriter, r *http.Request) {
var user User
json.NewDecoder(r.Body).Decode(&user)
fmt.Fprintf(w, "%s %s is %d years old!", user.Firstname, user.Lastname, user.Age)
})
http.HandleFunc("/encode", func(w http.ResponseWriter, r *http.Request) {
peter := User{
Firstname: "John",
Lastname: "Doe",
Age: 25,
}
json.NewEncoder(w).Encode(peter)
})
http.ListenAndServe(":80", nil)
}
go run json.go &
curl -s -X POST -d '{"firstname":"Elon","lastname":"Mars","age":48}' http://localhost/decode
curl -s http://localhost/encode
以上就是用Go语言建立http-server响应对JSON数据对象进行编码与解码的所有内容,欢迎小伙伴们交流讨论。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。