I use Alt and Redux as Flux implementation. In case you are asking about async API calls, you can call APIs using normal ajax request and use the collected data to update store. In Redux, you can use redux-thunk for performing async actions.
Flux doesn't make any assumptions regarding how you talk to your backend server/apis. You can use plain XHRs, jQuery $.ajax, fetch etc - basically anything you like.
Prashant Abhishek
Co-founder at AltCampus
Jan 27, 2016
I use Alt and Redux as Flux implementation. In case you are asking about async API calls, you can call APIs using normal ajax request and use the collected data to update store. In Redux, you can use redux-thunk for performing async actions.
Tom M
Slowly becoming a pro
Jan 27, 2016
Flux doesn't make any assumptions regarding how you talk to your backend server/apis. You can use plain XHRs, jQuery
$.ajax
, fetch etc - basically anything you like.