我在表单上有一个带有复选框的文章列表。选中一个框时,所选文章的正文将复制到其中一个x
文本区域。
如果用户想要更改文本区域中的文章正文,我需要通过我的控制器将该更改发送到新的 Rails 模型(称为 an 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 %>
为每篇文章创建记录,但我似乎无法保存文本区域中的编辑。这是一种嵌套形式的排列。任何帮助都将不胜感激。干杯!