1.index.html:180 Uncaught SyntaxError: Invalid shorthand property initializer
跟踪控制台一直出现这个错误
如下是错误JSON
//错误:本质原因是 “ = ”应该写为“ :”,可以说小小的符号毁所有 //获取用户信息 死亡回调 var token = sessionStorage.getItem("token") $.ajax({ url: "http://39.103.220.191:8888/user/info?token=" + sessionStorage.getItem("token"), contentType= "application/json", headers= { "Authorization": token }, success=function (res) { console.log(res); $(".user").append(res.data.username) } }) //正确写法 //获取用户信息 死亡回调 var token = sessionStorage.getItem("token") $.ajax({ url: "http://39.103.220.191:8888/user/info?token=" + sessionStorage.getItem("token"), contentType: "application/json", headers: { "Authorization": token }, success: function (res) { console.log(res); $(".user").append(res.data.username) } })