У меня есть select_tag для выбора элементов из списка, вот код:
<%= select_tag "Drinks", options_for_select([ "Water", "Soda", "Beer" ], "Water") %>
После отправки «воды» в качестве примера, оно не отображается в указателе и не отображается в разделе «Напитки».
Что я делаю не так?
Методы создания и обновления контроллеров
def create
@facture = Facture.new(params[:facture])
respond_to do |format|
if @facture.save
format.html { redirect_to @facture, :notice => 'Facture was successfully created.' }
format.json { render :json => @facture, :status => :created, :location => @facture }
else
format.html { render :action => "new" }
format.json { render :json => @facture.errors, :status => :unprocessable_entity }
end
end
end
def update
@facture = Facture.find(params[:id])
respond_to do |format|
if @facture.update_attributes(params[:facture])
format.html { redirect_to @facture, :notice => 'Facture was successfully updated.' }
format.json { head :ok }
else
format.html { render :action => "edit" }
format.json { render :json => @facture.errors, :status => :unprocessable_entity }
end
end
end