json解析含有斜杠的数据错误
list.do:1 Uncaught SyntaxError: Unexpected number in JSON at position 48
at JSON.parse (<anonymous>)
at list.do:21
list.do:32 Uncaught TypeError: Cannot read property '0' of undefined
at appendTable (list.do:32)
at onload (list.do:74)
前台⽤JSON.parse解析后台传递的数据时报上⾯这个错误,后台传递的数据是,
error parse new
{"incomeTypes":[{"name":"D:\\tomcat-8.5.15-front\\1","id":11,"age":11},{"name":"D:\\tomcat-8.5.15-
front\\2","id":22,"age":12}]}
错误原因是斜杠解析错误,把数据改为
{"incomeTypes":[{"name":"D:\\\\tomcat-8.5.15-front\\\\1","id":11,"age":11},{"name":"D:\\\\tomcat-8.5.15-front\\\\2","id":22,"age":12}]}就可以了。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。