如何向 Rails 3.1 添加 jquery 插件
我想在我的 Rails 应用程序中使用 LiveFilter https://github.com/mikemerritt/LiveFilter 。它正是我想做的——使用搜索框过滤现有元素。
我将如何将此(或任何其他)jquery 插件添加到 Rails 3.1 中,以便它与资产管道一起使用?如果你知道的话,3.2 会有所不同吗?
I want to use LiveFilter https://github.com/mikemerritt/LiveFilter in my rails app. It does exactly what I want to do - filter existing elements using a search box.
How would I go about adding this (or any other) jquery plugin to rails 3.1, so that it works with the asset pipeline? If you know, will it be different in 3.2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
livefilter.js
文件添加到您的 app/assets/javascripts
目录,并将 require 指令添加到您的 JS 清单(例如application.js< /code>) :
据我所知,资产管道在 3.1 和 3.2 中的工作方式相同。
Add the
livefilter.js
file toyour app/assets/javascripts
directory, and add a require directive to your JS manifest(s) (e.g.application.js
) :AFAIK, the asset pipeline works the same in 3.1 and 3.2.