登录
首页 >  Golang >  Go问答

使用Golang解析Json表单数据

来源:stackoverflow

时间:2024-03-14 14:00:28 493浏览 收藏

一分耕耘,一分收获!既然打开了这篇文章《使用Golang解析Json表单数据》,就坚持看下去吧!文中内容包含等等知识点...希望你能在阅读本文后,能真真实实学到知识或者帮你解决心中的疑惑,也欢迎大佬或者新人朋友们多留言评论,多给建议!谢谢!

问题内容

我使用 ajax 将 json 和序列化格式的表单数据发送到 golang 服务器。我无法读取这些数据。

我正在使用 kataras/iris golang 框架。

下面是我的代码 -

(function ($) {
    $.fn.serializeformjson = function () {
        var o = {};
        var a = this.serializearray();
        $.each(a, function () {
            if (o[this.name]) {
                if (!o[this.name].push) {
                    o[this.name] = [o[this.name]];
                }
                o[this.name].push(this.value || '');
            } else {
                o[this.name] = this.value || '';
            }
        });
        return o;
    };
})(jquery);

var contact = {
    sendmessage: function() {
      return m.request({
          method: "post",
          url: "/send/message",
          data: json.stringify(jquery('#contact-form').serializeformjson()),
          withcredentials: true,
          headers: {
              'x-csrf-token': 'token_here'
          }
      })
    }
}
<!-- data looks like below, what is sent -->
"{\"first_name\":\"sdsdfsj\",\"csrf.token\":\"fjtws7ufqc4mplzu\",\"last_name\":\"kjdhkfsdjfh\",\"email\":\"[email protected]\"}"

我正在尝试使用以下代码从服务器获取数据 -

// Contact form
type Contact struct {
    FirstName string `json:"first_name"`
    LastName  string `json:"last_name"`
    Email     string `json:"email"`
}

contact := Contact{}
contact.FirstName = ctx.FormValue("first_name")
contact.LastName = ctx.FormValue("last_name")
contact.Email = ctx.FormValue("email")
ctx.Writef("%v", ctx.ReadForm(contact))

我的所有数据都是空白,如何抓取数据?我正在使用 https://github.com/kataras/iris golang 框架。


解决方案


一方面,您将 json 发送到服务器,但是在获取参数时,您将它们作为“application/x-www-form-urlencoded”获取,首先,将 json 参数作为 json 发送,而不是作为字符串,删除字符串化,即:

而不是:

json.stringify(jquery('#contact-form').serializeformjson())

做:

jquery('#contact-form').serializeformjson()

并在您的 go 文件中,将其绑定到您的对象:

var contact []Contact 
err := ctx.ReadJSON(&contact)

祝你好运:)

到这里,我们也就讲完了《使用Golang解析Json表单数据》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>