中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Golang怎么接收前端的參數

發布時間:2020-03-20 16:03:48 來源:億速云 閱讀:1651 作者:小新 欄目:編程語言

Golang怎么接收前端的參數?其實并不是特別的難,只需要使用Golang開發web后臺,需要接收前端傳來的參數并作出響應就可以了,下面小編給你詳細講解吧。

Golang怎么接收前端的參數

1、首先,創建一個Golang web服務。

package main

import (
    "log"
    "fmt"
    "net/http"
    "html/template"
)

// 返回靜態頁面
func handleIndex(writer http.ResponseWriter, request *http.Request) {
    t, _ := template.ParseFiles("index.html")
    t.Execute(writer, nil)
}

func main() {
    http.HandleFunc("/", handleIndex)

    fmt.Println("Running at port 3000 ...")

    err := http.ListenAndServe(":3000", nil)

    if err != nil {
        log.Fatal("ListenAndServe: ", err.Error())
    }
}

index.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  Golang GET&POST
</body>
</html>

2、然后編寫前端get post請求,使用了axios庫,請自行引入。

<script>
  axios.get('/testGet', {
    params: {
      id: 1,
    }
  }).then((response) => {
    console.log(response);
  });
  
  // POST數據
const postData = {
  username: 'admin',
  password: '123',
};

axios.post('/testPostJson', postData).then((response) => {
  console.log(response);
});
</script>

3、接著,在Golang中實現接收get post參數即可。

一、Golang接收前端GET請求的參數

// 處理GET請求
func handleGet(writer http.ResponseWriter, request *http.Request) {
    query := request.URL.Query()

    // 第一種方式
    // id := query["id"][0]

    // 第二種方式
    id := query.Get("id")

    fmt.Printf("GET: id=%s\n", id)

    fmt.Fprintf(writer, `{"code":0}`)
}

func main() {
    // ...

    http.HandleFunc("/testGet", handleGet)

    // ...
}

服務端打印如下:

GET: id=1

二、Golang接收前端POST請求的參數

// 引入encoding/json包
import (
    // ...
    "encoding/json"
)

// 處理application/json類型的POST請求
func handlePostJson(writer http.ResponseWriter, request *http.Request) {
    // 根據請求body創建一個json解析器實例
    decoder := json.NewDecoder(request.Body)

    // 用于存放參數key=value數據
    var params map[string]string

    // 解析參數 存入map
    decoder.Decode(&params)

    fmt.Printf("POST json: username=%s, password=%s\n", params["username"], params["password"])

    fmt.Fprintf(writer, `{"code":0}`)
}

func main() {
    // ...

    http.HandleFunc("/testPostJson", handlePostJson)

    // ...
}

服務端打印如下:

POST json: username=admin, password=123

以上就是Golang怎么接收前端的參數的詳細內容,如果想了解更多請關注億速云行業資訊的其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东海县| 涿州市| 常熟市| 徐闻县| 保德县| 夏河县| 舟曲县| 夏津县| 车致| 咸丰县| 和硕县| 梅州市| 青龙| 安图县| 横峰县| 九寨沟县| 石楼县| 鹿邑县| 当阳市| 江陵县| 渑池县| 弋阳县| 十堰市| 云霄县| 望江县| 抚顺县| 静海县| 千阳县| 余庆县| 福清市| 库尔勒市| 玛沁县| 三亚市| 连平县| 溧水县| 康乐县| 偃师市| 阿克陶县| 邹平县| 子洲县| 郑州市|