Emberjs - How to wait until a template is fully rendered before accessing its children
问题 Is there a way to wait until a template is fully rendered before accessing its children through a view, using jquery for instance? didInsertElement doesn't seem to work as expected for me. I need to add an additional half second delay before the template is fully constructed. The template iterates over an array in the controller and creates several divs. it's these divs that aren't accessible immediately, even when I override didInsertElement. 回答1: I'm not aware of how you insert those