jquery 在将对象作为参数传递的时候要转换成 JSON

在向后台传递参数的时候,已经将值展示出来了,j接口是正常的,没有错误,但是返回的一直是500,后来对比看是因为没有将参数包成对象传给后台

不转换成JSON 会报错  Unexpected identifier
 
方法:

JSON.stringify(对象)

params ={
    name:"name",
    password:"password"
}
$.ajax({
    type: "post",
    url: "url",
    headers: {
        "Content-Type": "application/json",
    },
    processData:true,
    data:JSON.stringify(params),  .//此处注意,要转换成JSON.stringify(对象)
    dataType: "json",
    success: function(data){
}

jquery 在将对象作为参数传递的时候要转换成 JSON

上一篇:Unity 之 记录一个关于刚体穿透的问题


下一篇:Field 'id' doesn't have a default value问题解决方法