フォームをrfid
部分からview/cabinet/show
ページにナビゲートすると、値を取得するにはどうすればよいですか? device
has_one rfid
。キャビネット/ショーからRails/Ruby - 別のページからデータが渡されたフォームを事前入力
リンク:
<%= link_to "Create New Device (non-functional)", new_device_path({:id => @rfid.id, cabinet_id: @cabinet.id}), :class => "btn btn-primary" %>
devices_controller
、私は0または2のparamsのいずれかが渡された場合、メソッドの仕事を作成したい:
def create(options)
if options[:cabinet_id] and options[:id]
@rfid = Rfid.find(params[:id])
@device = Device.new(params[:device])
@device.rfid = @rfid
@device.cabinet_id = :cabinet_id
else
@device = Device.new(params[:device])
@cabinet = Cabinet.find(params[:device][:cabinet_id])
@device.row_id = @cabinet.row_id
end
respond_to do |format|
if @device.save and @cabinet.refresh_capacity_used and @cabinet.refresh_consumption
format.html { redirect_to @device, notice: 'Device was successfully created.' }
format.json { render json: @device, status: :created, location: @device }
else
format.html { render action: "new" }
format.json { render json: @device.errors, status: :unprocessable_entity }
end
end
エンド
新しいdevice/_form
のcabinet_idとrfid部分:
<tr>
<th>Cabinet</th>
<td><%= f.select :cabinet_id, options_from_collection_for_select(Cabinet.order(:name).all, "id", "name", @device.cabinet_id) %></td>
</tr>
<tr>
<th>RFID</th>
<td><%= f.text_field :rfid, :value => params[:rfid]%></td>
</tr>
ありがとうございます。
RFIDフィールドを事前移入するだけですか? – zeantsoi
いいえ、一度に1ステップずつ取ります。うまくいけば、私がrfidを見つけたら、私は自分でキャビネットを得るでしょう。 –
私は、両方のフィールドにあらかじめ入力する必要のあるコードについて回答しました。それが動作するか教えていただけますか? – zeantsoi