在React中,常用的異步請求數據的方法有以下幾種:
fetch(url)
.then(response => response.json())
.then(data => {
// 處理返回的數據
})
.catch(error => {
// 處理請求錯誤
});
axios.get(url)
.then(response => {
// 處理返回的數據
})
.catch(error => {
// 處理請求錯誤
});
async function fetchData() {
try {
const response = await fetch(url);
const data = await response.json();
// 處理返回的數據
} catch (error) {
// 處理請求錯誤
}
}
以上是常用的幾種異步請求數據的方法,根據個人的喜好和項目需求可以選擇合適的方法來進行數據請求。