If I have a basic Map object that’s being updated/refreshed periodically, how do I display the Map’s contents within my view/handlebars?
Any sample code would be great, as I’m still wrapping my head around Ember.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
The
Ember.Mapobject that comes with Ember is meant for high-performance, mostly internal use, so it doesn’t implement Observable, Ember.Array or Ember.Enumerable (requirements for displaying an auto-updating object).It would be pretty straight-forward to implement a
Mapthat supported auto-updating. Can you explain your use-case a bit?