簡體   English   中英

:選定的值正在頁面提交中重置

[英]:selected values are resetting in page submit

從下拉列表中選擇的值將在頁面提交中重置。這是代碼正在使用

<%=select_tag 'num_id', options_for_select(@numbers.collect{ |t| [t.firstno]}),:prompt => "Select"%>

我們如何在ruby on rails的select_tag內設置選定的值。

您可以將另一個參數傳遞給options_for_select來設置選定的選項

<%= select_tag 'num_id', options_for_select(@numbers.map(&:firstno), params[:num_id]), prompt: 'Select' %>

select_tag所選值-

options_for_select(@options, @selected_val)

例:

 options_for_select(1..8, 5)  # creates options from range 1..8, with 5 as selected by default.

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM