How to namespace our JS for use with the Rails asset pipeline

后端 未结 2 1098
执念已碎
执念已碎 2021-02-14 04:53

I understand the reasoning behind the rails 3.1 asset pipeline: we compile all the JS in a neat, cacheable file to improve performance. Great we want that.

However, load

2条回答
  •  盖世英雄少女心
    2021-02-14 05:40

    Here is a way to namespace everything on a controller/action level

    • http://www.viget.com/inspire/extending-paul-irishs-comprehensive-dom-ready-execution/
    • above was inspired by http://paulirish.com/2009/markup-based-unobtrusive-comprehensive-dom-ready-execution/

    You basically declare you body as such

    
    

    And then these methods are called (which each have a series of methods -- so if you need something on every page, it's in common/init. Or on all users actions, that's on users/init. Or only the users show page? that's users/show.

    SITENAME.common.init();
    SITENAME.users.init();
    SITENAME.users.show();
    

    I've used this and it works very very well.

提交回复
热议问题