脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Golang - axios gin的GET和POST请求实现示例

axios gin的GET和POST请求实现示例

2022-09-20 18:07Jeff的技术栈 Golang

这篇文章主要为大家介绍了axios gin的GET和POST请求实现示例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步早日升职加薪

axios-GET请求

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
created() {
            console.log('该组件要被加载成功了')
            this.$axios({
                url: "http://127.0.0.1:8080/student/3",
                method: "GET",
                headers: {
                    // 'Content-Type': 'application/x-www-form-urlencoded'
                    'Content-Type': 'multipart/form-data'
                }
            }).then(response => {
                    console.log(response)
                }
            ).catch(error => {
                    console.log(456)
                    console.log(error)
                }
            );

Gin-GET响应

?
1
2
3
4
5
6
7
8
9
r.GET("/student/:ID", func(c *gin.Context) {
        id := c.Param("ID")
        var student Student
        _ = c.ShouldBind(&student)
        db.Preload("Teachers").Preload("IDCard").First(&student, "id=?", id)
        c.JSON(200, gin.H{
            "msg": student,
        })
    })

Vue-POST请求

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
this.$axios({
                url: "http://127.0.0.1:8080/test",
                method: "post",
                headers: {
                    'Content-Type':'application/x-www-form-urlencoded',
                },
                data: {
                    "name": "jeff",
                    "age": 18
                }
            }).then(response => {
                    console.log(response)
                }
            ).catch(error => {
                    console.log(456)
                    console.log(error)
                }
            );

Gin-POST响应

?
1
2
3
4
5
6
7
8
9
10
r.POST("/test", func(c *gin.Context) {
        user := c.PostForm("name")
        pwd := c.PostForm("age")
        fmt.Println(user)
        fmt.Println(pwd)
        fmt.Println(c)
        c.JSON(200, gin.H{
            "msg": "成功!",
        })
    })

以上就是axios gin的GET和POST请求实现示例的详细内容,更多关于axios gin的GET和POST请求的资料请关注服务器之家其它相关文章!

原文链接:https://www.cnblogs.com/guyouyin123/p/14169363.html

延伸 · 阅读

精彩推荐