json.decoder.JSONDecodeError: Expecting ‘,‘ delimiter: line 3 column 1 (char 14)
json.decoder.JSONDecodeError: Expecting ‘,’ delimiter: line 3 column 1 (char 14)
报错信息
json.decoder.JSONDecodeError: Expecting ',' delimiter: line 3 column 1 (char 14)
报错原因
前端传来json字符串拼接错误
{
"uid":"1"
"data":[["数据1", 86, 81], ["曼联", 74, 66], ["利物浦", 69, 99]]
}
解决办法
{
"uid":"1",
"data":[["数据1", 86, 81], ["曼联", 74, 66], ["利物浦", 69, 99]]
}
加个逗号
欢迎大家交流学习,任何问题都可以留言
还没有评论,来说两句吧...