1

我有很多任务的项目模型。项目和任务都可以有很多讨论,因此我做了讨论多态模型(见下文)。

我希望能够单击链接并将“讨论”标记为已完成。

我继续这样做的方法是在“讨论控制器”中进行自定义操作,将“完成”属性的布尔值从 false 更改为 true。如何使讨论显示页面中的 link_to 助手成功路由到讨论控制器中的自定义操作?另外,这是执行此操作的最佳做​​法吗?

讨论模型

  1 class Discussion < ActiveRecord::Base  
  4   belongs_to :user
  5   belongs_to :discussionable, :polymorphic => true 
 28 end

项目模型

  1 class Project < ActiveRecord::Base 
  7   has_many :tasks, :dependent => :destroy
  8   has_many :discussions, :as => :discussionable, :dependent => :destroy
 24 end 

任务模型

  1 class Task < ActiveRecord::Base          
  7   belongs_to :project      
 14   has_many :discussions, :as => :discussionable, :dependent => :destroy
 27 end

到目前为止,我的 link_to 助手如下所示,但它不起作用(没有按我的意愿触发自定义的“完成”操作)......

讨论秀

7   <%= link_to 'Finish discussion', polymorphic_path([@parent, @discussion]), :action => 'finish' %>

这是讨论控制器中的自定义完成操作。(我有 before_filter,它从 params[:id] 定义了这个 @discussion 变量)

 33   def finish
 34     if @discussion.update_attribute(:finished, true)
 35       flash[:notice] = "it worked"    
 36       else
 37       flash[:alert] = 'You must be an admin to do that'
 38     end
 39   end

我也没有摆弄routes.rb,因为我不知道是否必须这样做。

路由.rb

  1 PrjctMngr::Application.routes.draw do                 
 13     
 14   # PROJECTS
 15   resources :projects do
 16     resources :tasks
 17     resources :discussions
 18   end
 19 
 20   # TASKS
 21   resources :tasks do
 22     resources :subtasks
 23     resources :discussions
 24   end
 31 
 32   # DISCUSSIONS
 33   resources :discussions do
 34     resources :comments    
 35   end
 36 
 37 end
4

1 回答 1

3
 <%= link_to 'Finish discussion', polymorphic_path([@parent, @discussion], :action => 'finish'), :method => :put %>

action 选项用于路径助手,而不是标签助手;)

all assuming you have route set up propery
#routes.rb
resources :tasks do 
  resources :discussions do
    put :finish, :on => :member
  end
end
于 2012-05-28T14:53:43.923 回答