错误:没有路线匹配 [GET] "/bookings/:id/%3E:format"
单击“link_to”的链接时,我想更新属性..
<%= link_to 'Cancel', '/bookings/:id/(.:format)' %>
路线.rb
put '/bookings/:id/(.:format)' => "bookings#tocancel"
patch '/bookings/:id/(.:format)' => "bookings#tocancel"
控制器
def tocancel
@booking = Booking.find(params[:id])
@booking.update_attribute(:status, "cancel")
respond_to do |format|
format.html { redirect_to @booking, notice: 'Booking was successfully cancelled.' }
format.json { render :show, status: :ok, location: @booking }
结尾