Unexpected token o in JSON at position 1

来源:9-13 HTTP API实现博客列表读取与删除功能

qq_慕婉清4473262

2022-04-21

图片描述
源代码:
getList() {
this.loading = true
fetchList({
start: this.blogList.length,
count: this.count
}).then(res => {
console.log(res)
const data = res.data
let _blogList = []
for (let i = 0, len = data.length; i < len; i++) {
_blogList.push(JSON.parse(data[i]))
}
this.blogList = this.blogList.concat(_blogList)
this.loading = false

  })
}

初次往表格中写入blog数据出了以上问题
我感觉JSON格式是没问题的
但是最开始用console.log(res)也是没有问题的 请老师看看

写回答

1回答

谢成

2022-04-22

错误信息的意思是JSON.parse()的参数有问题。还是要仔细检查下data[i]的值是否正确。

0
0

微信小程序云开发-从0打造云音乐全栈小程序

横跨小程序端、云后端、CMS一站式云开发的小程序全栈课程

1938 学习 · 2768 问题

查看课程