报错 SyntaxError: Unexpected token R in JSON at position 0 at JSON.parse (<anonymous>)的解决方法
程序员文章站
2022-05-30 18:24:27
...
报错 SyntaxError: Unexpected token R in JSON at position 0 at JSON.parse ()的解决方法
报错代码:
let articles = await pagination(Article).find().page(page).size(1).
display(3).populate('author').exec();
// 渲染文章列表页面模板
res.render('admin/article.art', {
articles: articles
});
解决报错后的代码:
let articles = await pagination(Article).find().page(page).size(1)
.display(3).populate('author').exec();
let str = JSON.stringify(articles);
let result = JSON.parse(str);
// 渲染文章列表页面模板
res.render('admin/article.art', {
articles: result
});
(1)先利用JSON.stringify()方法将 JavaScript 值转换为 JSON 字符串。
(2)在利用JSON.parse() 接收服务器数据时一般是字符串。JSON.parse() 方法将数据转换为 JavaScript 对象。
推荐阅读
-
vue 报错Error in mounted hook: "SyntaxError: Unexpected token u in JSON at position 0"
-
报错: Error in created hook: “SyntaxError: Unexpected token u in JSON at position 0
-
JSOIN.parse()报错:Uncaught SyntaxError: Unexpected token o in JSON at position 1 at JSON.parse (
) -
JSON字符格式报错:VM40:1 Uncaught SyntaxError: Unexpected token E in JSON at position 0
-
SyntaxError: Unexpected token R in JSON at position 0 报错的解决方法
-
报错 SyntaxError: Unexpected token R in JSON at position 0 at JSON.parse (<anonymous>)的解决方法
-
Uncaught SyntaxError: Unexpected token E in JSON at position 0 at JSON.parse ()
-
解决报错:Uncaught SyntaxError: Unexpected token “xxx” in JSON at position 0
-
解决报错信息之:SyntaxError: Unexpected token R in JSON at position 0
-
JS报错解决:SyntaxError: Unexpected token 《 in JSON at position 0