Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような Ember.js で汎用モデルを作成するにはどうすればよいですか?
{{#each item in mythings}} {{item}} {{/item}}
この jsbinのように、コントローラーにプロパティを作成します。
App.ApplicationController = Ember.Controller.extend({ mythings: ['foo', 'bar', 'baz'] });