-4
我在React JS上是全新的。我們用Laravel和ReactJS重新編寫了我們的應用程序。此前它在jquery和Laravel中。現在我正努力通過React JS來使用REST API。需要關於它的代碼示例。在React JS應用程序中使用REST API的最佳方式是什麼?
我在React JS上是全新的。我們用Laravel和ReactJS重新編寫了我們的應用程序。此前它在jquery和Laravel中。現在我正努力通過React JS來使用REST API。需要關於它的代碼示例。在React JS應用程序中使用REST API的最佳方式是什麼?
可以使用javascript
在建造功能fetch
:
fetch(url)
.then(function(data) {
// Here you get the data to modify as you please
})
})
.catch(function(error) {
// If there is any error you will catch them here
});
看看這個link