在React中,你可以使用fetch()
函數(shù)或axios
庫來讀取文件內(nèi)容。
使用fetch()
函數(shù):
fetch('path/to/file.txt')
.then(response => response.text())
.then(data => {
// 處理文件內(nèi)容
console.log(data);
})
.catch(error => {
// 處理錯(cuò)誤
console.log(error);
});
使用axios
庫:
axios.get('path/to/file.txt')
.then(response => {
// 處理文件內(nèi)容
console.log(response.data);
})
.catch(error => {
// 處理錯(cuò)誤
console.log(error);
});
無論使用fetch()
函數(shù)還是axios
庫,都需要在你的React組件中引入它們。