Displaying loader while meteor collection loads

前端 未结 3 1094
旧巷少年郎
旧巷少年郎 2020-11-29 03:57

I have a template, task_list, that looks like this:

{{#each tasks}}
    {{> task}}
{{/each}}

Template.task_list.tasks

3条回答
  •  既然无缘
    2020-11-29 04:15

    Dan's answer was definitely spot on, but I want to remind that I belive autopublish package has to be removed for it to actually work.

    meteor remove autopublish
    

    Plus, I recommend spin package for a nice looking spinner.

提交回复
热议问题