如何使用 Golang 建置和處理 JSON 回應的 RESTful API步驟:建立 Golang 專案並安裝 Gorilla Mux。定義路由並處理 HTTP 請求。安裝 JSON 編解碼器包,以使用 JSON 編解碼器。根據請求方法處理請求,並將資料轉換為 JSON 並寫入回應。
1. 建立Golang 專案
go mod init <project-name>
2. 安裝Gorilla Mux路由包
go get github.com/gorilla/mux
3. 定義路由
import ( "github.com/gorilla/mux" "net/http" ) func main() { router := mux.NewRouter() router.HandleFunc("/", HomeHandler).Methods("GET") // ... 其他路由定义 http.ListenAndServe(":8080", router) }
4. 處理HTTP 請求
func HomeHandler(w http.ResponseWriter, r *http.Request) { // 根据请求方法处理请求 switch r.Method { case "GET": // ... 处理 GET 请求 case "POST": // ... 处理 POST 请求 // ... 其他方法处理 } }#處理JSON 回應
1. 安裝JSON 編解碼器套件
go get github.com/json-iterator/go
2. 使用JSON 編解碼器
import ( "encoding/json" "fmt" "net/http" ) func WriteJSONResponse(w http.ResponseWriter, data interface{}) { w.Header().Set("Content-Type", "application/json") if err := json.NewEncoder(w).Encode(data); err != nil { // 处理错误 } }#實戰案例
範例API:取得所有使用者
路由定義:
router.HandleFunc("/users", GetAllUsersHandler).Methods("GET")
請求處理程序:
import ( "net/http" "github.com/json-iterator/go" ) // ... func GetAllUsersHandler(w http.ResponseWriter, r *http.Request) { users := [...]UserModel{ {ID: 1, Name: "John Doe"}, {ID: 2, Name: "Jane Doe"}, } // 将用户模型转换为 JSON 并写入响应 WriteJSONResponse(w, users) }
客戶端:
向/users 端點發送GET 請求並解析JSON 回應。
以上是如何使用 Golang 建立 RESTful API 並處理 JSON 回應?的詳細內容。更多資訊請關注PHP中文網其他相關文章!