最佳答案
我想在 response js 中获取我的 Json 文件,为此我使用的是 fetch
。但它显示了一个错误
Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0
什么可能是错误,我没有得到任何线索。我甚至验证了我的 JSON。
handleGetJson(){
console.log("inside handleGetJson");
fetch(`./fr.json`)
.then((response) => response.json())
.then((messages) => {console.log("messages");});
}
我的儿子
{
"greeting1": "(fr)choose an emoticon",
"addPhoto1": "(fr)add photo",
"close1": "(fr)close"
}