In the previous chapter, we looked at the architecture of Ember Data. We briefly discussed the role of the adapter and how it is responsible for figuring out how to make requests to an API. In this chapter, we’ll look at the adapter and see how it works so that we can customize them in future chapters.
The adapter is responsible for figuring out how to make requests to an API. This includes determining the full URL based upon the model name and making the HTTP request using AJAX technologies like $.ajax, fetch, or XMLHttpRequest ...