我正在从PHP文件中检索JSON字符串,如下所示:
async fetchAvailableSets(){
try {
let response = await fetch('http://example.com/getdata.php', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
})
let responseJson = await response.json()
.then((responseData) => {
console.log(responseData) /* This displays the JSON text */
RNFS.writeFile(RNFS.DocumentDirectoryPath + 'info.json', responseData)
.then(() => {
RNFS.readFile(RNFS.DocumentDirectoryPath + 'info.json')
.then((contents) => {
console.log(contents) /* Nothing is displayed */
})
})
})
}
.
.
.
}
如果我将writeFile行更改为:
RNFS.writeFile(RNFS.DocumentDirectoryPath + 'info.json', responseData.toString())
然后我写入文件的所有内容都是“[object Object]”。看起来这是一个字符串而不是一个合法的对象。
我觉得它不应该将它转换为字符串,因为它已经是一个字符串。此外,为什么将它转换为字符串使它成为一个对象有点令人困惑。
我做错了什么?
答案 0 :(得分:0)
JSON.stringify(responseData);
会更合适;