`
CaiDeHen
  • 浏览: 96929 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

#37 Simple Search Form

 
阅读更多
A search form is quite different than other forms, this is because it does not deal with model's attributes. See a good way to add a simple search form in this episode.
<!-- projects/index.rhtml -->
<% form_tag projects_path, :method => 'get' do %>
  <p>
    <%= text_field_tag :search, params[:search] %>
    <%= submit_tag "Search", :name => nil %>
  </p>
<% end %>
# projects_controller.rb
def index
  @projects = Project.search(params[:search])
end

# models/project.rb
def self.search(search)
  if search
    find(:all, :conditions => ['name LIKE ?', "%#{search}%"])
  else
    find(:all)
  end
end
分享到:
评论

相关推荐

    filter_form:轻松构建过滤器表单

    构建过滤器的形式很容易通过ransack和simple_form 。 安装 将此行添加到应用程序的 Gemfile 中: gem 'filter_form' 然后执行: $ bundle 或者自己安装: $ gem install filter_form 用法 在您的控制器中: ...

    Google AJAX Search API

    Your page can drive the map through the supplied search form, through pre-selected search terms, and even through hyperlinks on your page (e.g., Sushi.) Adding the Map Search Control to your page is...

    LotusDomino学习笔记.doc

    #### 37. 在你的DOMINO WEB站点中插入.SWF文件 - **插入方法**: 在HTML页面中使用`&lt;object&gt;`或`&lt;embed&gt;`标签来嵌入SWF文件。 #### 38. DOMINO R5的域搜索功能在WEB上的实现 - **实现方法**: 使用Domino R5提供的...

    search.zip_Visual_Basic_

    this is a simple search form. uhm i suggest to change its database with your database and also its path. adodc is required!

    R for beginner

    They are written in the form `response ~ predictors`, where `response` is the dependent variable and `predictors` are the independent variables. ##### Generic Functions R uses generic functions to ...

    240多个jQuery UI插件

    - **Simple jQuery form validation**: 简单实用的表单验证插件。 - **jQuery XAV-form validations**: 提供扩展性的表单验证功能。 - **jQuery AlphaNumeric**: 确保输入字段只包含字母和数字。 - **Masked ...

    Struts2标签详解及具体实例解析

    &lt;s:form action="saveUser" theme="simple"&gt; 用户名"/&gt; 保存"/&gt; &lt;/s:form&gt; ``` - **解释**:创建一个名为“saveUser”的表单,其中包含一个用户名输入框和一个提交按钮。 ##### 23. `&lt;s:generator&gt;` 生成器...

    240多个jQuery插件.doc

    - **Simple jQuery form validation**: 简单易用的表单验证插件。 - **jQuery XAV - form validations**: 提供多种验证方式。 - **jQuery AlphaNumeric**: 限制表单输入只能为字母或数字。 - **Masked Input**: 可以...

    VB编程资源大全(英文源码 表单)

    DockDemo.zip A form that docks to the edges of the desktop (and actually works), and takes the taskbar into consideration.&lt;END&gt;&lt;br&gt;37 , transparentform.zip Transparent Form with bitmap mask 1 ...

    prolog manual.pdf

    6.3 Convert first-order logic to normal form 6.4 A normal rulebase goal interpreter 6.5 Evidentiary soundness and completeness 6.6 Rule tree visualization using Java 7. Introduction to Natural ...

    Code Edit Studio v1.1(最新版) 支持超过40种开发语言的超级代码

    It provides a powerful, easy to use and simple environment for development of applications on Windows platforms. Code Edit Studio helps the programmer in many ways., prevents errors, helps in ...

    emacs-lisp-intro

    In Emacs Lisp, functions are defined using the `defun` form. Chapter 14 explores how to count words within a `defun` definition, which can be useful for analyzing code or implementing metrics. #### ...

    Plone CMS Windows 安装版 v4.2.4 多国语言版.zip

    A simple way to test mail server settings using a form in the mail settings control panel HTML5 support A unified interface for listing content or representations of content (such as catalog brains)...

    MlSkin 4.3 Delphi 10.3

    Easy to achieve the shadow of the form, the shape of the special form effect, simple to only need to set up two pictures. You can add any number of pictures, buttons and text on the form title bar. ...

    (学软件编程需必学的英语)第一学期英文单词汇总

    - **simple**:简单,容易理解和操作的。 - **charge**:负责人,负责管理或控制某项事务的人。 - **list**:列表,按特定顺序排列的项目集合。 ### 使用HTML语言和CSS开发商业站点 #### 第一章:HTML基础 - **...

Global site tag (gtag.js) - Google Analytics