Rails:通过link_to操作创建和销毁belongs_to关联

时间:2019-01-31 10:24:11

标签: ruby-on-rails ruby ruby-on-rails-3

我正在使用具有图像和英雄的管理界面。 Hero表仅包含两列:id和image_id。我希望能够在英雄表中添加和删除图像。

我有一个select_to_hero和select_from英雄操作并查看,这些视图显示所有尚未连接的图像或所有现有的英雄,并且都正常工作,但是我用来创建新的或破坏现有关联的add_to_hero和remove_from_hero操作却不显示工作。

Hero.rb模型

class Hero < ActiveRecord::Base
  attr_accessible :image_id
  belongs_to :image
end

Image.rb模型

class Image < ActiveRecord::Base
  attr_accessible :alt, :author, :copyright, :file_name, :title
  has_one :hero
  mount_uploader :file_name, ImageUploader
end

Select_from_hero.html.erb

<% @heroes.each do |hero| %>
  <%= link_to(image_tag(hero.image.file_name.url(:thumb), {:action => 'remove_from_hero', :id => hero, :hero => @hero}) %>
<% end %>

Select_to_hero.html.erb

<% @images.each do |image| %>
  <%= link_to(image_tag(image.file_name.url(:thumb), {:action => 'add_to_hero', :id => image, :hero => @hero}) %>
<% end %>

images_controller.rb

def add_to_hero
  @hero.image << Image.find(params[:id]) unless @hero.image.include?(Image.find(params[:id]))
  if @hero.save
    ..
  else
    render :action => 'select_to_hero'
  end
end

def remove_from_hero
  @hero.image.delete(Image.find(params[:id]))
  if @hero.save
    ..
  else
    render :action => 'select_from_hero'
  end
end

通过此设置,我得到:

NoMethodError in Admin::ImagesController#add_to_hero
undefined method `image' for nil:NilClass

NoMethodError in Admin::ImagesController#remove_from_hero
undefined method `image' for nil:NilClass

但是我可以查询现有的关联:

> Hero.find(2).image
  Hero Load (0.3ms)  SELECT `heroes`.* FROM `heroes` WHERE `heroes`.`id` = ? LIMIT 1  [["id", 2]]
  Image Load (0.3ms)  SELECT `images`.* FROM `images` WHERE `images`.`id` = 1 LIMIT 1
 => #<Image id: 1, file_name: "red.jpg", title: "blu", alt: "yellow", author: "John", copyright: "Jane", created_at: "2019-01-29 19:50:25", updated_at: "2019-01-29 19:50:25"> 

我该如何工作?

更新

路线

namespace :admin do
  resources :heroes
  match '/images/select_to_hero',        :to => 'images#select_to_hero',    :as => :select_to_hero
  match '/images/select_from_hero',      :to => 'images#select_from_hero',  :as => :select_from_hero
  resources :images
  match '/images/add_to_hero/:id',       :to => 'images#add_to_hero',       :as => :add_to_hero
  match '/images/remove_from_hero/:id',  :to => 'images#remove_from_hero',  :as => :remove_from_hero
  ...
end

我必须将select_to_heroselect_from_hero路线移至resources :images上方,否则呼叫将触发show动作。

2 个答案:

答案 0 :(得分:1)

关注您关于add_to_action的最新评论,我想在下面提出解决方案

Select_to_hero.html.erb,更改:hero并仅发送以下英雄的ID

    <% @images.each do |image| %>
      <%= link_to(image_tag(image.file_name.url(:thumb), {:action => 'add_to_hero', :id => image, :hero_id => @hero.id}) %>
    <% end %>

images_controller.rb,首先从hero_id中找到英雄

    def add_to_hero
      @hero = Hero.find(params[:hero_id])
      @hero.image << Image.find(params[:id]) unless @hero.image.include?(Image.find(params[:id]))
      if @hero.save
        ..
      else
        render :action => 'select_to_hero'
      end
    end

答案 1 :(得分:0)

由于总是有用的@vasilisa,我找到了解决问题的方法。我必须使用:

<% @images.each do |image| %>
  <%= link_to(image_tag(image.file_name.url(:thumb)), {:action => 'add_to_hero', :id => image, :image_id => image}) %>
<% end %>

在我看来,

def add_to_hero
  @hero = Hero.new(:image_id => params[:id])

  if @hero.save
    ...
  else
    render :action => 'select_to_hero'
  end
end

在我的控制器操作中。

之所以可行,是因为在我的情况下,我只需要通过在Hero中创建一个新条目来声明一个图像为英雄,或者通过销毁Hero中的条目来删除英雄声明。

谢谢大家的建议。