1.无效的JSON
详细报错
Error in v-on handler: "SyntaxError: Unexpected token u in JSON at position 0"
SyntaxError: Unexpected token u in JSON at position 0
at JSON.parse (<anonymous>)
at VueComponent.handleConditionRowInsert (ruleTable.vue?ae4e:790)
错误代码
JSON.parse(JSON.stringify(this.tableData[0]))
Error in v-on handler前面第一句的意思是绑定响应时间的函数有报错,那么报错定位<xxx @xxx=“f1”>里面的f1函数
第二句:Unexpected token u in JSON at position 0
Json字符串的开始应该是双引号(对象)、中括号(数组)、数字(字符型、数字型数据)开始,但是事实却以U开始,说明JSON字符串是undefined,导致无法转换将JSON字符串转换成JSON对象