- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Ruby 不允许两个 hidden_field
以一种形式?排名值一直保存为3
即使用户针对具有 date_started.present?
的挑战更改它
如果我拿出<%= f.hidden_field(:notes_date, value: date) %>
然后该值根据用户的选择正确保存,但当然我不能直接删除该行,因为我需要它来设置日期。
注释/表格
<%= form_for [@notable, @note] do |f| %>
<%= f.text_area :notes_text, placeholder: 'Enter Note' %>
<%= f.hidden_field(:ranking, id: 'rank') %> # Defaults ranking to 3, but if user changes it in the form it still gets saved as 3 for date_started.present? challenges
<% if @challenge.date_started.present? %>
<%= f.hidden_field(:notes_date, value: date) %>
<% else %>
<%= f.date_select :notes_date, :order => [:month, :day] %>
<% end %>
<%= image_tag('1.png', data: { ranking: 1 }, class: 'image-clicker') %>
<%= image_tag('2.png', data: { ranking: 2 }, class: 'image-clicker') %>
<%= image_tag('3.png', data: { ranking: 3 }, class: 'image-clicker clicked') %>
<%= image_tag('4.png', data: { ranking: 4 }, class: 'image-clicker') %>
<%= f.submit %>
<% end %>
<script>
$('.image-clicker').click(function() {
$('#rank').val($(this).data('ranking'));
$('.clicked').removeClass('clicked')
$(this).addClass('clicked');
});
</script>
呈现注释/表单
<% if @challenge.date_started %>
<% @challenge.dates_challenged.first(@challenge.days_challenged + @challenge.missed_days).each_with_index do |date, i| %>
<% if @notes.any? { |note| note.notes_date.strftime("%m/%d/%y") == date.strftime("%m/%d/%y") } %>
<% @notes.each do |note| %>
<% if note.notes_text.present? %>
<% if note.notes_date.strftime("%m/%d/%y") == date.strftime("%m/%d/%y") %>
<div class="notes-notes-background">
<% if note.ranking == 1 %>
<%= image_tag '1.png', class: 'note-emoticon' %>
<% elsif note.ranking == 2 %>
<%= image_tag '2.png', class: 'note-emoticon' %>
<% elsif note.ranking == 3 %>
<%= image_tag '3.png', class: 'note-emoticon' %>
<% elsif note.ranking == 4 %>
<%= image_tag '4.png', class: 'note-emoticon' %>
<% end %>
<div style="font-weight: bold; font-size: 18px;">Day <%= i + 1 %></div>
<b><%= note.notes_date.strftime("%b %d, %Y") %></b><br><br>
<%= link_to edit_note_path(note) do %>
<%= simple_format note.notes_text %>
<% end %>
</div>
<% end %>
<% else %>
<% end %>
<% end %>
<% else %>
<div class="notes-form-background">
<div style="margin-bottom: -23px; color: #a4a99f; font-weight: bold; font-size: 18px; color: #446CB3;">Day <%= i + 1 %></div><br>
<div style="color: #a4a99f;"><%= date.strftime("%m/%d") %></div>
<%= render 'notes/form', :date => date %> # For date_started date is passed through to form
</div>
<% end %>
<% end %>
<% else %>
<% @notes.each do |note| %>
<div class="notes-notes-background">
<% if note.ranking == 1 %>
<%= image_tag '1.png', class: 'note-emoticon' %>
<% elsif note.ranking == 2 %>
<%= image_tag '2.png', class: 'note-emoticon' %>
<% elsif note.ranking == 3 %>
<%= image_tag '3.png', class: 'note-emoticon' %>
<% elsif note.ranking == 4 %>
<%= image_tag '4.png', class: 'note-emoticon' %>
<% end %>
<b><%= note.notes_date.strftime("%b %d, %Y") %></b><br><br>
<%= link_to edit_note_path(note) do %>
<%= simple_format note.notes_text %>
<% end %>
</div>
<% end %>
<div class="notes-form-background">
<%= render "notes/form" %> # For nil date_started date is not passed to form
</div>
<% end %>
日志
# NOTE FOR CHALLENGE WITHOUT DATE_STARTED (AKA GOAL CHALLENGE)
# NOTE CORRECTLY SAVED RANKING
Started POST "/challenges/175-take-a-picture/notes" for 127.0.0.1 at 2016-05-11 14:34:39 -0400
Processing by NotesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YYad25L/yIqbgnnWgD6ufHRBuAgQzc5kQZZ6TqvzNbDu2wQMnZ4yI2F8SdHoRLVBD/IOueXh6cJCGJFSVFoY5w==", "note"=>{"notes_text"=>"adfasdfasdf", "notes_date"=>"2016-05-08", "ranking"=>"1", "conceal"=>"0"}, "button"=>"", "challenge_id"=>"175-take-a-picture"}
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 78]]
Challenge Load (0.5ms) SELECT "challenges".* FROM "challenges" WHERE "challenges"."id" = $1 LIMIT 1 [["id", 175]]
(0.3ms) BEGIN
SQL (0.3ms) INSERT INTO "notes" ("notes_text", "ranking", "notes_date", "user_id", "challenge_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["notes_text", "adfasdfasdf"], ["ranking", 1], ["notes_date", "2016-05-08 04:00:00.000000"], ["user_id", 78], ["challenge_id", 175], ["created_at", "2016-05-11 18:34:39.351527"], ["updated_at", "2016-05-11 18:34:39.351527"]]
(0.6ms) COMMIT
(0.1ms) BEGIN
SQL (0.4ms) INSERT INTO "activities" ("action", "trackable_id", "trackable_type", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["action", "create"], ["trackable_id", 146], ["trackable_type", "Note"], ["user_id", 78], ["created_at", "2016-05-11 18:34:39.357991"], ["updated_at", "2016-05-11 18:34:39.357991"]]
(0.6ms) COMMIT
Redirected to http://0.0.0.0:3000/challenges/175-take-a-picture
Completed 302 Found in 19ms (ActiveRecord: 3.2ms)
# NOTE FOR CHALLENGE WITH DATE_STARTED (AKA HABIT CHALLENGE)
# NOTE DID NOT SAVE RANKING
Started POST "/challenges/175-take-a-picture/notes" for 127.0.0.1 at 2016-05-11 14:38:05 -0400
Processing by NotesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"AmISZHocVRAxMgg50oiQZm4GT8m04uGJ2AH1iCE6jSeNP4uzdX2vucvMOD668otbFbX5eEHOxi/bjx6U3pOgcA==", "note"=>{"notes_text"=>"super sad face with 1 ranking", "notes_date"=>"2016-05-11", "ranking"=>"", "conceal"=>"0"}, "button"=>"", "challenge_id"=>"175-take-a-picture"}
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 78]]
Challenge Load (1.8ms) SELECT "challenges".* FROM "challenges" WHERE "challenges"."id" = $1 LIMIT 1 [["id", 175]]
(3.6ms) BEGIN
SQL (0.3ms) INSERT INTO "notes" ("notes_text", "notes_date", "user_id", "challenge_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["notes_text", "super sad face with 1 ranking"], ["notes_date", "2016-05-11 04:00:00.000000"], ["user_id", 78], ["challenge_id", 175], ["created_at", "2016-05-11 18:38:05.365702"], ["updated_at", "2016-05-11 18:38:05.365702"]]
(15.8ms) COMMIT
(0.2ms) BEGIN
SQL (0.4ms) INSERT INTO "activities" ("action", "trackable_id", "trackable_type", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["action", "create"], ["trackable_id", 148], ["trackable_type", "Note"], ["user_id", 78], ["created_at", "2016-05-11 18:38:05.388367"], ["updated_at", "2016-05-11 18:38:05.388367"]]
(16.9ms) COMMIT
Redirected to http://0.0.0.0:3000/challenges/175-take-a-picture
Completed 302 Found in 61ms (ActiveRecord: 39.3ms)
HTML 输出
<div class="notes-form-background">
<div style="margin-bottom: -23px; color: #a4a99f; font-weight: bold; font-size: 18px; color: #446CB3;">Day 20</div><br>
<div style="color: #a4a99f;">05/30</div>
<form class="new_note" id="new_note" action="/challenges/176-meditate/notes" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="O1vx9h2yTuKmv6R/GyN8msppVp5iX+cMSIAbyWUsJKS0BmghEtO0S1xBlHhzWWensdrgL5dzwKpLDvDVmoUJ8w==" />
<button name="button" type="submit" class="remove-note">
<span class="glyphicon glyphicon-remove"></span>
</button>
<div class="form-group">
<textarea rows="4" class="form-control" id="challenge-name" placeholder="Enter Note" name="note[notes_text]">
</textarea>
<div class="center">
<input value="05-30" type="hidden" name="note[notes_date]" id="note_notes_date" />
</div>
<div class="emoticons-align-center">
<span class="label label-primary" style="vertical-align: text-top;">How was it?</span>
<input id="rank" type="hidden" name="note[ranking]" />
<img data-ranking="1" class="image-clicker" src="/assets/1-d13146fa38dc5aa389b7136023e0a70d.png" alt="1" />
<img data-ranking="2" class="image-clicker" src="/assets/2-e855957467934964a571061ed2f87edf.png" alt="2" />
<img data-ranking="3" class="image-clicker" src="/assets/3-f39b8a225ddd8b1b9633c147ab4c605f.png" alt="3" />
<img data-ranking="4" class="image-clicker" src="/assets/4-bc78072f299a492c5411b6e47cb85adf.png" alt="4" />
</div>
<div style="margin-top: 30px;">
<div style="float: left;">
<input name="note[conceal]" type="hidden" value="0" /><input data-size="small" data-on-color="danger" data-on-text="Secret" data-off-text="Public" class="someclass" type="checkbox" value="1" name="note[conceal]" id="note_conceal" />
<script>
$("[class='someclass']").bootstrapSwitch();
</script>
</div>
<div style="float: right;">
<button name="button" type="submit" class="btn">
Save
</button> </div>
</div>
</div>
</form>
<script>
$('.image-clicker').click(function() {
$('#rank').val($(this).data('ranking'));
$('.clicked').removeClass('clicked')
$(this).addClass('clicked');
});
</script>
最佳答案
Rails 没有任何异常(exception),只允许表单有一个隐藏字段。你可以有多个。在我看来,你的问题出在其他地方,也许它没有按照你的预期设置隐藏字段的值。
要对此进行测试,请将隐藏字段设置为普通文本字段,然后查看值是否发生变化。
如果情况发生变化,那么也许可以在 Controller 中设置一个断点,看看你得到的参数是什么。
关于javascript - 一种形式中有多个隐藏字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37150968/
代码如下: http://jsfiddle.net/t2nite/KCY8g/ 我正在使用 jquery 创建这些隐藏框。 每个框都有一些文本和一个“显示”和“隐藏”按钮。我正在尝试创建一个“显示/隐
我正在尝试做某事。如果单击一个添加 #add-conferance 然后菜单将显示.add-contact。当点击隐藏然后它显示隐藏。我也将 setTimeout 设置为 7sec,但我希望当我的鼠标
我有一个多步骤(多页?)表单,只要用户按下“下一步”或“上一步”按钮,表单字段就会通过 div 显示和隐藏。 我只想禁用第一个 div (div id="page1"class="pageform")
我有一个使用 IIS 6 和 7 的当前系统,用 ASP.NET 和 .NET 4 中的 C# 编写。 My purpose is to hide the url completely (as per
我正在建立一个网站,并有一个幻灯片。幻灯片有标题和索引,覆盖整个页面。当覆盖被激活时,标题需要消失。当覆盖层被停用时,通过单击退出按钮、缩略图链接或菜单链接,字幕必须返回。 这就是我目前所拥有的
我正在尝试为显示/隐藏功能制作简单的 jquery 代码。但我仍然做错了什么。 $(document).ready(function(){ $('.arrow').click(function
我有一个自定义对话框并使用它来代替 optionMenu。所以我希望 myDialog 表现得像菜单,即在按下菜单时显示/隐藏。我尝试了很多变体,但结果相同: 因为我为 myDialog 设置了一个
在我的项目中,我通过 ViewPager 创建我的 tabBar,如下所示: MainActivity.java mViewPager = (ViewPager) findViewById(R.id.
我目前正在使用一个 Excel 表,我将第 1-17 行分组并在单元格 B18 中写入了一个单元格值。我想知道当我在展开/折叠行时单击 +/- 符号时是否有办法更改 B18 中的值。 例如:我希望 B
我想创建一个按钮来使用 VBA 隐藏和取消隐藏特定组。我拥有的代码将隐藏或取消隐藏指定级别中的所有组: Sub Macro1() ActiveSheet.Outline.ShowLevels RowL
我是 VBA 新手。我想隐藏从任何行到工作表末尾的所有行。 我遇到的问题是我不知道如何编程以隐藏最后写入的行。 我使用下一个函数知道最后写入的单元格,但我不知道在哪里放置隐藏函数。 last = Ra
我想根据另一个字段的条件在 UI 上隐藏或更新一个字段。 例如,如果我有一个名为 Color 的字段: [PXUIField(DisplayName="Color")] [PXStringList("
这是我尝试开始收集通常不会遇到的 GCC 特殊功能。这是@jlebedev 在另一个问题中提到g++的“有效C++”选项之后, -Weffc++ This option warns about C++
我开发了一个 Flutter 应用程序,我使用了 ProgressDialog小部件 ( progress_dialog: ^1.2.0 )。首先,我展示了 ProgressDialog小部件和一些代
我需要在 API 17+ 的同一个 Activity(Fragment) 中显示/隐藏状态栏。假设一个按钮将隐藏它,另一个按钮将显示它: 节目: getActivity().getWindow().s
是否可以通过组件的 ts 代码以编程方式控制下拉列表的显示/隐藏(使用 Angular2 清楚)- https://vmware.github.io/clarity/documentation/dro
我想根据 if 函数的结果隐藏/显示 NiceScroll。 在我的html中有三个部分,从左到右逐一滚动。 我的脚本如下: var section2 = $('#section2').offset(
我有这个 jquery 代码: $(document).ready(function(){ //global vars var searchBoxes = $(".box"); var searchB
这个问题已经有答案了: Does something like jQuery.toggle(boolean) exist? (5 个回答) 已关闭 6 年前。 在 jQuery 中(我当前使用的是 1
我在这样的选择标签上使用 jQuery 的 selectMenu。 $('#ddlReport').selectmenu() 在某些情况下我想隐藏它,但我不知道如何隐藏。 这不起作用: $('#ddl
我是一名优秀的程序员,十分优秀!