首页 > Web开发 > 详细

[beego学习] Ajax请求处理,JSON数据返回

时间:2021-05-11 22:05:22      阅读:22      评论:0      收藏:0      [点我收藏+]

Ajax请求处理,JSON数据返回

1.前端页面添加ajax请求
这里是以POST请求发送AJAX请求

<script>
    $(function(){
        $("#submitBtn").click(function(){
            $.ajax({
                "url":"/Login",
                "type":"POST",
                "data":{
                    "username":$("#username").val(),
                    "password":$("#password").val(),
                },
                success:function(res){
                    console.log(res["msg"]);
                }
            });
        });
    });
</script>
<body>
    <div>
        <form>
            用户名:<input type="text" id="username"/><br/>
            密码:<input type="password" id="password"/><br/>
            <input type="button" id="submitBtn" value="提交"/>
        </form>
    </div>
</body>

2.后端处理
后端处理,和正常的请求一样,添加路由,以及相关的函数,注意返回json数据

func (c *LoginController) Post(){
    var user LoginUser
    err := c.ParseForm(&user)
    if err != nil{
        fmt.Println("error")
    }

    fmt.Println(user.Username)
    fmt.Println(user.Pwd)

    // c.Ctx.WriteString("Login success")
    ret := map[string]interface{}{
        "status":200,
        "msg":"success",
    }

    c.Data["json"] = ret
    c.ServeJSON()
}

[beego学习] Ajax请求处理,JSON数据返回

原文:https://www.cnblogs.com/laughingpig/p/14756530.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!