0

我正在使用以下表格和控制器。如果我创建一个新通知,除了 Campus_id 之外的所有内容都会被保存。

尽管我从下拉列表中选择了不同的校园参数,但似乎给出了错误的校园参数。如果我之后编辑相同的条目,那么它会被保存吗?发生了什么事,我该如何解决?

相同的表单用于编辑和创建操作。(这是部分)

值得注意的是,我对校园 (has_many) 和通知 (belongs_to) 使用了浅层路线。

路线.rb

  shallow do
    resources :campus do
      resources :notifications
    end
  end

形式:

<%= form_for [@campus,@notification] do |f| %>
  <% if @notification.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@notification.errors.count, "error") %> prohibited this notification from being saved:</h2>

      <ul>
      <% @notification.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :post %><br>
    <%= f.text_area :post %>
  </div>
  <div class="field">
    <%= f.label :campus %><br>
    <%= f.collection_select(:campus_id, Campus.all.order('name ASC'), :id, :name, prompt: true) %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

这是控制器:

class NotificationsController < ApplicationController
  before_action :set_notification, only: [:show, :edit, :update, :destroy]
  before_action :set_campus, only: [:index, :new, :create]

  def index
    @notifications = @campus.notification
  end

  def show
  end

  def new
    @notification = @campus.notification.new
  end

  def edit
  end

  def create
    @notification = @campus.notification.new(notification_params)

    respond_to do |format|
      if @notification.save
        format.html { redirect_to @notification, notice: 'Notification was successfully created.' }
        format.json { render action: 'show', status: :created, location: @notification }
      else
        format.html { render action: 'new' }
        format.json { render json: @notification.errors, status: :unprocessable_entity }
      end
    end
  end

  def update
    respond_to do |format|
      if @notification.update(notification_params)
        format.html { redirect_to @notification, notice: 'Notification was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: 'edit' }
        format.json { render json: @notification.errors, status: :unprocessable_entity }
      end
    end
  end

  def destroy
    @notification.destroy
    respond_to do |format|
      format.html { redirect_to campu_notifications_url(1) }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_notification
      @notification = Notification.find(params[:id])
    end

    def set_campus
      @campus = Campus.find(params[:campu_id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def notification_params
      params.require(:notification).permit(:post, :campus_id)
    end
end

如果我查看日志,我会看到错误的参数被提交。

2014 年 9 月 29 日 18:29:33 +0000 为 84.193.153.106 开始 POST "/campus/1/notifications" :33 +0000 NotificationsController 处理#create as HTML 由 NotificationsController 处理#create as HTML 参数:{"utf8"=>"_", "authenticity_token"=>"oNSlEFeukwEj2hIAT89wFdIYwjHO5c8lzBlCqMyk31Y=", "notification"=>{"post"= >"sdqfdsfd", "campus_id"=>"3"}, "commit"=>"创建通知", "campu_id"=>"1"} 参数:{"utf8"=>"_", "authenticity_token"= >"onNSlEFeukwEj2hIAT89wFdIYwjHO5c8lzBlCqMyk31Y=", "通知"=>{"post"=>"sdqfdsfd", "campus_id"=>"3"}, "commit"=>"Create Notification", "campu_id"=>"1"} 校园负载 (0.4ms) SELECT "campus".* FROM "campus" WHERE "campus"."id" = $1 LIMIT 1 [["id", "1"]] Campus Load (0.4ms) SELECT "campus".* FROM "campus" WHERE "campus"."id" = $1 LIMIT 1 [["id", "1"]] (0.1ms) BEGIN (0.1ms) BEGIN SQL (28.6ms) INSERT INTO "notifications" ("campus_id", "created_at", "post", "updated_at ") 值 ($1, $2, $3, $4) 返回 "id" [["campus_id", 1], ["created_at", Mon, 29 Sep 2014 18:29:34 UTC +00:00], ["post ","sdqfdsfd"], ["updated_at", Mon, 29 Sep 2014 18:29:34 UTC +00:00]] SQL (28.6ms) INSERT INTO "notifications" ("campus_id", "created_at", "post", "updated_at") 值 ($1, $2, $3, $4) 返回 "id" [["campus_id", 1], ["created_at", Mon, 29 Sep 2014 18:29:34 UTC +00:00], [ "post", "sdqfdsfd"], ["updated_at", Mon, 29 Sep 2014 18:29:34 UTC +00:00]] (3.5ms) COMMIT (3.5ms) COMMITcreated_at”,2014 年 9 月 29 日星期一 18:29:34 UTC +00:00],[“post”,“sdqfdsfd”],[“updated_at”,2014 年 9 月 29 日星期一 18:29:34 UTC +00:00 ]] (3.5ms) 提交 (3.5ms) 提交created_at”,2014 年 9 月 29 日星期一 18:29:34 UTC +00:00],[“post”,“sdqfdsfd”],[“updated_at”,2014 年 9 月 29 日星期一 18:29:34 UTC +00:00 ]] (3.5ms) 提交 (3.5ms) 提交

4

1 回答 1

2

可能想要像这样更改您的newcreate操作:

def new
  @notification = @campus.notifications.build
end

def create
  @notification = @campus.notifications.build(notification_params)

  respond_to do |format|
    if @notification.save
      format.html { redirect_to @notification, notice: 'Notification was successfully created.' }
      format.json { render action: 'show', status: :created, location: @notification }
    else
      format.html { render action: 'new' }
      format.json { render json: @notification.errors, status: :unprocessable_entity }
    end
  end
end

campus.build_notification将实例化一个通知belongs_to campus。使用将要求您作为参数的一部分new传递。notification[campus_id]

于 2014-09-29T18:36:54.767 回答