首页 > Web开发 > 详细

解决 go iris ReadJSON 无法获取 json,并提示 unexpected end of JSON input 的错误

时间:2020-11-03 10:19:49      阅读:402      评论:0      收藏:0      [点我收藏+]

前台页面使用 jquery 往后台传值时iris报 unexpected end of JSON input。

 

后台代码

func Update(ctx iris.Context){
	type nodes struct {
		Id  string `json:"id" form:"id"`
		Name string `json:"name" form:"name"`
	}

	var data []nodes

	if err := ctx.ReadJSON(&data); err != nil {
		ctx.JSON(iris.Map{
			"status":  "error",
			"message": err,
		})
	}else{
		//TODO  CURD
	
		ctx.JSON(iris.Map{
			"status":  "ok",
			"message": "操作成功",
		})
	}
} 

  

前台 jquery

var data = [
	{id:"1",name:"沈恩忍"},
	{id:"2",name:"王佑春"},
	{id:"3",name:"沈子民"},
	{id:"4",name:"王诗涵"},
];

$.ajax({
	url:"localhost:8080/update",
	type:‘post‘,
	dataType:‘json‘,
	data:JSON.stringify(data),
	success : function(r){
		if (r.status == "ok") {
			alert("成功执行")
		}else{
			alert("执行失败")
		}
	}
})

  

浏览器传的值,如下图:

技术分享图片

 

 

 

解决方法

在 jquery ajax 中添加    contentType: "application/json; charset=utf-8" 即可,如下代码

$.ajax({
	url:"localhost:8080/update",
	type:‘post‘,
	dataType:‘json‘,
	contentType: "application/json; charset=utf-8",//此句非常重要
	data:JSON.stringify(data),
	success : function(r){
		if (r.status == "ok") {
			alert("成功执行")
		}else{
			alert("执行失败")
		}
	}
})

  

解决 go iris ReadJSON 无法获取 json,并提示 unexpected end of JSON input 的错误

原文:https://www.cnblogs.com/ser0632/p/13917715.html

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