如何向 Rails 3.1 添加 jquery 插件

发布于 2025-01-01 12:28:18 字数 254 浏览 0 评论 0原文

我想在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笔一画续写前缘 2025-01-08 12:28:18

livefilter.js 文件添加到您的 app/assets/javascripts 目录,并将 require 指令添加到您的 JS 清单(例如 application.js< /code>) :

//= require livefilter

据我所知,资产管道在 3.1 和 3.2 中的工作方式相同。

Add the livefilter.js file to your app/assets/javascripts directory, and add a require directive to your JS manifest(s) (e.g. application.js) :

//= require livefilter

AFAIK, the asset pipeline works the same in 3.1 and 3.2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文