Rails:如果条件满足,则将信息复制到另一个模型中

时间:2013-05-22 04:37:08

标签: ruby-on-rails ruby-on-rails-3 model-view-controller nested-forms

我在表单上有一个带有复选框的文章列表。选中复选框后,所选文章的正文将复制到x个文本区域之一。

如果用户想要更改文本区域中文章的正文,我需要通过我的控制器将该更改发送到新的Rails模型(称为Edit)。

我已经创建了记录,我只需要应用程序将更改记录到新的Edit记录中。这是我的相关控制器代码:

def new
  @template = Template.find(params[:template])
  @article_count = @template.pages-1
  @doc = Doc.new
  @doc.template_id = @template.id
  @doc.user_id = current_user.id
  @articles = current_user.brand.articles
  respond_to do |format|
    format.html
    format.json { render json: @doc }
  end
end

创建

def create
  @doc = Doc.new(params[:doc])
  respond_to do |format|
    if @doc.save
      #make editable version
      if current_user.brand.try(:editable?)
        @doc.articles.each do |article|
          @edit = Edit.new
          @edit.name = article.name
          @edit.video = article.video
          #something here to get the bodies of the text areas
          @edit.article_id = article.id
          @edit.doc_id = @doc.id
          @edit.user_id = current_user.id
          @edit.save
        end
      end
      @doc.create_activity :create, owner: current_user
      format.html { redirect_to share_url(@doc.user.ftp, @doc) }
      format.json { render json: @doc, status: :created, location: @doc }
    else
      format.html { render action: "new" }
      format.json { render json: @doc.errors, status: :unprocessable_entity }
    end
  end
end

以下是使视图中的文本区域的代码。

<% @article_count.times do |article| %>
  <div id="edit<%= article %>" class="tab-pane <%= "active" if article == 0 %>">
    <%= text_area_tag("edit[#{article}][body]") %>
  </div>
<% end %>

为每篇文章创建了记录,但我似乎无法保存文本区域的编辑内容。这是一种嵌套形式的安排。任何帮助都绝对值得赞赏。干杯!

1 个答案:

答案 0 :(得分:0)

我通过将表单分成两页来解决这个问题:一个处理选择,第二个处理编辑。鉴于Doc有很多edits,这就是我为表单第二部分所做的方法:

def edit_content
  @doc = Doc.find(params[:id])
  if !@doc.edits.exists?
    @doc.articles.reverse.each do |article|
      @doc.edits.build(:body => article.body)
    end
  end
end

希望能有所帮助。