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]的值是否正确。
00
相似问题