当允许控制器方法作为视图中的助手时,如何传递参数?
在我的 example_controller.rb 我有
class ExampleController < ApplicationController
helper_method :group_exists?
private
def group_exists?(gid):
.. code to check if group exists
end
end
在视图中(我使用 slim),我想传递一个参数
- if group_exists?(group.gid)
| Exists
- else
| Does not exist
但是它会抛出一个错误说
wrong number of arguments (2 for 0..1)