去掉反斜杠:JSON.stringify(temp).replace(/[\\]/g,'')
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of
2.如果拼字符串中有 “” 需要去掉,那么直接转换成 对象吧。
JSON.parse(str.substring(0,str.length-1))
去掉反斜杠:JSON.stringify(temp).replace(/[\\]/g,'')
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of
2.如果拼字符串中有 “” 需要去掉,那么直接转换成 对象吧。
JSON.parse(str.substring(0,str.length-1))