码迷,mamicode.com
首页 > 编程语言 > 详细

ajax传数组后台GO语言接收

时间:2018-07-05 21:29:46      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:$.ajax   back   fun   ajax   style   nal   color   this   cal   

js代码如下:

function PostHandle(url,data,callback) {
        $.ajax({
            type: "Post",
            url:url,
            data:data,
            dataType:‘json‘,
            async: false,
            success: callback
        });
    }

var arr = new Array(); //arr是你想要传递的数组,自己定义即可

 PostHandle("/getOriginalGrade",{ "arr":JSON.stringify(arr)},function(result){
                console.log(result)
            });

go后台代码如下:

str:= this.GetString("arr")
var s []string
json.Unmarshal([]byte(str), &s)
beego.Debug(s[0])

这样就实现了数组json格式的解析

ajax传数组后台GO语言接收

标签:$.ajax   back   fun   ajax   style   nal   color   this   cal   

原文地址:https://www.cnblogs.com/zheng123/p/9270069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!