1. 程式人生 > >ajax請求,fastjson報出錯誤:syntax error, expect {, actual error, pos 0

ajax請求,fastjson報出錯誤:syntax error, expect {, actual error, pos 0

報錯資訊如下:

org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: syntax error, expect [, actual error, pos 0, fieldName null; nested exception is com.alibaba.fastjson.JSONException: syntax error, expect [, actual error, pos 0, fieldName null

 

將ajax請求的引數轉換成字串。

js

JSON.stringify方法將data物件轉換成JSON字串就可以了。

   $.ajax({
            data:JSON.stringify(data),
    });