在React中調用接口的方法可以通過使用fetch函數或者axios庫來實現。以下是兩種方法的示例:
fetch('http://api.example.com/data')
.then(response => response.json())
.then(data => {
// 處理返回的數據
})
.catch(error => {
// 處理請求錯誤
});
npm install axios
然后在需要調用接口的組件中引入axios:
import axios from 'axios';
axios.get('http://api.example.com/data')
.then(response => {
// 處理返回的數據
})
.catch(error => {
// 處理請求錯誤
});
以上兩種方法都是通過向服務器發送HTTP請求來調用接口,并通過Promise來處理返回的數據或錯誤。根據實際情況,你可以選擇使用其中一種方法。