3

我有点像 Rails 菜鸟,在解决问题时遇到了一些麻烦。

我正在使用带有以下 gem 的 Rails 3.2.13(除了默认 gem):

gem 'devise'
gem 'cancan'
gem 'cocoon'
gem 'best_in_place'

我正在使用 cocoon 来处理嵌套模型,在这种情况下,我有一个(设计)用户负责has_many项目和每个项目has_many任务。

我可以通过以下方式获取所有要显示的信息(并在点击时变得可编辑):

<% @project.tasks.each do |task| %>
<%= best_in_place task, :description, :path => tasks_path, :type => :input %>
<% end %>

我的问题是我无法让 best_in_place 保存对嵌套任务属性的更新

项目模型

class Project < ActiveRecord::Base
  belongs_to :user

  has_many :tasks

  attr_accessible :description, :name, :tasks_attributes, :user_id, :tasks
  accepts_nested_attributes_for :tasks, :reject_if => :all_blank, :allow_destroy => true
end

任务模型

class Task < ActiveRecord::Base
  belongs_to :project

  attr_accessible :description, :done, :hours
end

项目负责人

class ProjectsController < ApplicationController
  before_filter :authenticate_user!

  def show
    @project = Project.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render :json => @project }
    end
  end

def update
  @project = Project.find(params[:id])

    respond_to do |format|
      if @project.update_attributes(params[:project])
        format.html { redirect_to @project, :notice => 'Project was successfully updated.' }
        #format.json { head :no_content }
        format.json { respond_with_bip(@project) }
      else
        format.html { render :action => "edit" }
        #format.json { render :json => @project.errors, :status => :unprocessable_entity }
        format.json { respond_with_bip(@project) }
      end
    end
  end
end

项目 -> show.html.erb

<% @project.tasks.each do |task| %>
  <li class="module-list-item ui-state-default clear">
    <section class="task-name left">
      <%= best_in_place task, :description, :path => tasks_path, :type => :input %>
    </section>
  </li>
<% end %>
4

2 回答 2

2

尽管这种用法不受官方支持(正如@Ich 指出的那样),但有一种解决方法。不需要任何额外的控制器。您只需将参数传递param给 best_in_place。

class Unicycle < AR::Base
  has_one :wheel
  accepts_nested_attributes_for :wheel, update_only: true
end

best_in_place unicycle.wheel, :last_rotation, 
  path: unicycle_path(unicycle.id), type: :input, 
  param: "unicycle[wheel_attributes]"

Car请注意,对于 a , which has_many :wheels(或对于 a Unicyclethat has_one :wheelwhereupdate_only不适合您)来说,它稍微复杂一些。

car.wheels.each do |wheel|
  best_in_place wheel, :last_rotation, 
    path: car_path(car.id), type: :input, 
    param: "car[wheel_attributes][id]=#{wheel.id}&car[wheel_attributes]" 
    # Note that you have to pass the ID of the wheel in this case
end

适用于 v3.0.3,也可能适用于更早的版本,但我尚未测试。

于 2015-05-11T18:40:25.803 回答
0

根据https://github.com/bernat/best_in_place/issues/51这不受 best_in_place 支持。

gem 的作者认为,就地编辑应该只修改一个模型的属性,因此更改另一个模型的属性不在范围内。

我的意见:我个人对这个决定感到遗憾。

于 2014-03-19T16:02:48.370 回答