如果我使用“application/text”和res.text()
,它将返回纯文本而不是数组。如果我使用res.json()
,我将在"<“结尾处获得无效标记。如果我使用JSON.stringify(final)
,我将获得一个无法解析的额外新行字符串。是否有其他方法从公共文件夹中准备此内容?
这是我得到的示例文件结构,不是json,而是一个对象实体数组:
文件名:newFile.dto
[
{
id: 0,
img: 'C:\\ReactProjects\\IMAGES\\DSC_0134.jpg',
test: 'another column'
},
{
id: 1,
img: 'C:\\ReactProjects\\IMAGES\\DSC_0135.jpg',
test: 'another column 1'
},
{
id: 2,
img: 'C:\\ReactProjects\\IMAGES\\DSC_0136.jpg',
test: 'another column 2'
},
{
id: 3,
img: 'C:\\ReactProjects\\IMAGES\\DSC_0137.jpg',
test: 'another column 3'
}
]
async function testFileRead()
{
let myArray = await fetch('newFile.dto',{
headers : {
'Content-Type': 'application/text',
'Accept': 'application/text'
}
}
)
.then(res =>{
return res.text(); //res.json()
})
.then(final =>{
return final;
})
}
字符串
1条答案
按热度按时间kwvwclae1#
您可以在
fetch
之后使用eval()
:字符串
注意***Never use eval()!***:从字符串执行JavaScript是一个巨大的安全风险。
正如 * 基思 * 建议使用至少比
eval
更安全:型