请求接口后端提示:JSON parse error: Unrecognized token 'clickLocation': was expecting ('true', 'false' or 'null');

 内容:JSON parse error: Unrecognized token 'clickLocation': was expecting ('true', 'false' or 'null'); nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'clickLocation': was expecting ('true', 'false' or 'null')\n at [Source: (PushbackInputStream); line: 1, column: 15]

提示: JSON.parse error,所以是 json 的转化问题。

复制代码
let obj = {
    clickLocation: "wx",
    clickOrigin: "wx"
}
$.ajax({
    type: "POST",
    url: "http://192.168.3.55:8010/biz/tool/clickStats/addClickNum",
    dataType: "json",
    headers: {
        "Content-Type": "application/json;charset=UTF-8"
    },
    data: JSON.stringify(obj),
    async: false,
    success: function (res) {
        console.log(res, "res");
    }
})
复制代码

 

posted @   小蘑菇123  阅读(230)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
历史上的今天:
2021-06-15 vue3.0 + svg 图标
2021-06-15 vue eslint(indent) 空格缩进报错
2021-06-15 vue3.0 + fontAwesome 图标
点击右上角即可分享
微信分享提示