javascript JSON.parse解析双引号嵌套单引号格式的数据
JSON.parse() 方法用于将一个 JSON 字符串转换为对象。 >str1 = {'distance': 1, 'update_time': 'None', 'n_homalt_N_het': '13/3822', 'ratio': '-', 'quality': '451'} {'distance': 1, 'update_time': 'None', 'n_homalt_N_het': '13/3822', 'ratio': '-', 'quality': '451'} >JSON.parse(str1) VM1366:1 Uncaught SyntaxError: Une
用户评论