无法在Rails中进行简单的搜索工作



我是铁路新手。我试图在我的推文中实现简单的搜索,但它显示了那里的整个推文,而不是我正在搜索的特定推文。使用SQLITE和Rails 3.2.6

我看了RailsCasts#37和其他一些教程,但我不知道我在哪里犯了错误。

我的推文模型

class Tweet < ActiveRecord::Base
  belongs_to :user
  attr_accessible :body
    def self.search(search)
        if search
            find(:all, :conditions => ['body LIKE ?', "%#{search}%"])
        else
            find(:all)
        end
    end
end

控制器

 @tweets = Tweet.search(params[:search])

我的索引页面中的表单

<%= simple_form_for tweets_path, :method => 'get', :html => { :class => 'pull-right' } do |f| %>
    <%= f.input :search, :label => false, :input_html => { :class => 'span3'} %>
<% end %>

推文迁移

class CreateTweets < ActiveRecord::Migration
  def change
    create_table :tweets do |t|
      t.text :body
      t.references :user
      t.timestamps
    end
    add_index :tweets, :user_id
  end
end

我搜索东西时的URL!

http://localhost:3000/tweets?utf8=%E2%9C%93&%2Ftweets%5Bsearch%5D=awesome

寻求帮助和支持!提前感谢!

我认为您的参数名称弄错了。看这里,"传递给form_for的名称控制params中用于访问表单值的键",所以在你的控制器中,你应该写这样的东西:

@tweets = Tweet.search(params[:tweets][:search])

相关内容

  • 没有找到相关文章

最新更新