これにより、コレクション内のすべてが出力されるはずですが、2 つの要素しか出力されません。
リスト全体を出力しないのはなぜですか? ある種のレースケースですか?
class window.Restful
constructor:->
_.each @collection, (action,kind)=>
$('.actions').append "<div>#{action} #{kind}</div>"
class Material extends Restful
namespace: 'admin/api'
table_name: 'materials'
constructor:(@$rootScope,@$http)->
super
collection:
get: 'downloaded'
get: 'incomplete'
get: 'submitted'
get: 'marked'
get: 'reviewed'
get: 'corrected'
get: 'completed'
post: 'sort'
post: 'sort_recieve'
new Material()