recently use jquery"s ajax to send Json data to the Java background, because the default requested ContentType is application/x-www-form-urlencoded;charset=UTF-8, resulting in an extra "=" at the end of the Json data received by the background.
now that I know that changing ContentType to application/json;charset=utf-8 can solve this problem, I"d like to ask why there is an extra = by default. Do you want to take a look at the source code? I don"t know how to look at it yet.