我的视图中有一个复选框
<%= check_box_tag 'email_checker', 'selected' %>
如果选中此复选框,我想在我的函数中执行特定操作。我正在自定义的功能在模型内部。在我想使用复选框值自定义的“if”下方。
if ????
notified = []
# Author and assignee are always notified unless they have been
# locked or don't want to be notified
notified << author if author
...
如何从我的视图中获取复选框值并在我的模型函数中使用它的值?
PS:我已经尝试过使用:params[:email_checker]
但是没有用。