How should I handle ajax requests in a fairly traditional web application? Specifically with using React for views, while having a backend that handles data such as text and
You can use JavaScript Fetch API, it supports GET and POST as well, plus it has building Promises.
fetch('/api/getSomething').then(function() {...})