Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8370289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:52:48+00:00 2026-06-09T13:52:48+00:00

What is the difference between Adapter and Fixture Adapter and REST Adapter, and when

  • 0

What is the difference between Adapter and Fixture Adapter and REST Adapter, and when to use each one?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T13:52:48+00:00Added an answer on June 9, 2026 at 1:52 pm

    Use DS.FixtureAdapter (or DS.FixtureAdapter.create()) when you don’t (yet?) care to communicate with a backend, but will store your data as “fixtures” in the client. Once you’ve declared a model:

    App.Thing = DS.Model.extend({
      name: DS.attr('string'),
      // ...
    });
    

    You can define your fixtures:

    App.Thing.FIXTURES = [
      {
        id: 1,
        name: '...',
        // ...
      },
      {
        id: 2,
        name: '...',
        // ...
      },
    ];
    

    And then you can use the ember-data methods on them (e.g. App.Thing.findAll(), etc.) and manipulate them, but of course it will only persist as long as the page does (i.e. the javascript environment).

    DS.RestAdapter, usable though apparently still under development, was designed to fit well with a Rails API, but could probably be modified / extended to work with whatever RESTful API you’re working with. It knows to process App.Thing.findAll() by making a call to /things, and to process App.Thing.find(12) with a call to /things/12. This is a relative path, appended to the namespace parameter you pass in:

    App.store = DS.Store.create({
      revision: 4,
      adapter: DS.RestAdapter.create({
        namespace: 'http://what.ever/api/v1'
      })
    });
    

    DS.Adapter is rather abstract: the superclass of the aforementioned built-in Adapters. If neither suit your needs, you may well want to implement your own:

    App.adapter = DS.Adapter.create({
      find: function(store, type, id) {
        // ...
        jQuery.get( ... , function(data) {
          store.load(type, id, data);
        });
      },
      createRecord: function(store, type, model) {
        // ...
        jQuery.post( ... , function(data) {
          store.didCreateRecord(model, data);
        });
      },
      // ...
    });
    App.store = DS.Store.create({
      revision: 4,
      adapter: App.adapter
    });
    

    Hope that helps. See the readme doc at https://github.com/emberjs/data for more information.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the difference between the Bridge and Adapter patterns?
Difference between start-pointers and interior-pointers and in what situation we should prefer one over
The difference between Chr and Char when used in converting types is that one
Can any one explain difference between position and anchor point in cocos-2D with some
What is the difference between the Facade , Proxy , Adapter , and Decorator
What is the difference between data adapter and data reader?
Is there any difference between ListView.invalidateViews() and Adapter.notifyDataSetChanged() ?
what is the diffrence between Cursors and base adapter spically when i wanna use
What is the difference between Array adapter and Cursor Adapter in Android?
What's the difference between CopyIcon and DuplicateIcon ?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.