0

我正在为我的 redmine 编写一个插件,我需要将一个参数从我的视图传递给我的控制器。我正在尝试传递@repository.url我的 erb.html 文件中已经存在的参数。

下面是我正在尝试工作的代码。请问,我做错了什么?:

_navigation.erb.html

<% 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', :with => "'id=' + $('@repository.url').value")%>
    </div>

gerar_versao_controller.rb

def exec_client(url_branch)
.
.
.
end

谢谢。

4

1 回答 1

0

我认为这应该对你有用。

<%= button_to_function l(:gerar_build_project), remote_function(:action => 'exec_client', :controller => 'GerarVersao', :with => "'id=' + $('#{@repository.url}').value") %>
于 2013-06-13T03:43:05.613 回答