我正在使用反应来制作网页。
我的大部分反应代码来自airbnb style(https://github.com/airbnb/react-dates)
但我找不到如何在反应网中使用Fetch API。
你能推荐一个很好的例子吗?
答案 0 :(得分:0)
你可以看一下这篇文章 https://daveceddia.com/ajax-requests-in-react/
它使用axios
,但您可以使用相同的模式并将axios
代码替换为
fetch('http://api.exampledomain.com/api/search')
.then((response) => response.json())
.then((jsonData) => {
//handle json data processing here
console.log(jsonData);
});