将params从视图传递到轨道上的红宝石中的控制器

时间:2013-07-15 17:28:03

标签: ruby-on-rails view controller parameter-passing

这是我的观看代码

_navigation.html.erb

<% if User.current.allowed_to?(:view_repository, @project) -%>
    <div style="float: left; width: auto; padding-right: 1%">  
    <%= button_to_function l(:gerar_build_project), remote_function(:action => 'exec_client', :controller => 'GerarVersao')%>
    </div>
|
<% end -%>

exec_client是我在控制器端的功能。下面的代码如下:

gerar_versao_controller.rb

def exec_client(branch)
hostname = 'localhost'
port = 8522
s = TCPSocket.open(hostname, port)
s.puts "MSG_RV"
s.puts branch.to_s
s.close
end

此代码不起作用。我收到这个错误:

ArgumentError(错误的参数数量(0表示1)):

问题是:如何将param Branch传递给我的控制器功能?

1 个答案:

答案 0 :(得分:0)

我认为你应该使用:with参数 看看这个例子 http://apidock.com/rails/ActionView/Helpers/PrototypeHelper/remote_function#529-Example