如何从jquery访问动作控制器值

时间:2012-12-12 06:22:46

标签: jquery ruby-on-rails

我是新的jquery。有人告诉我如何从jquery

访问动作控制器的值

我在视图中有以下代码......

<% @user_rep.each do |result| %>
<%= link_to result.time,{:action =>'download_log'}, :id => 'l123'%></td>
<% end %>

我在jquery中编写了以下代码...

jQuery(document).ready(function(){
   jQuery("#l123").click(function() {
    jQuery("#file").show("slow");     // Showing some div 
    ####What to write here
   });
});

我在download_log操作中编码

def download_log
IO.foreach "#{RAILS_ROOT}/public/#{filename}" do |line|
                    @file_content << line
                    @file_content << '<br/>'
            end
end

任何身体都告诉我..当我点击'l123'然后会显示一个div,控制器动作会自动调用“download_log”吗?如果可能的话,我如何在jquery中访问download_log的值“@file_content”。请帮帮我。

1 个答案:

答案 0 :(得分:2)

你可以选择这样的东西:

$(document).ready(function(){
    $("#l123").click(function() {
        $.ajax({
            url: urlOfControllerAndAction,
            type: "get",
            success: function (response, textStatus, jqXHR) {
                $("#file").html(response);
                $("#file").show("slow")
            },
            error: function (jqXHR, textStatus, errorThrown) {
            },
            // callback handler that will be called on completion
            // which means, either on success or error
            complete: function () {
            }
        });
   });
});

Ajax jQuery文档:http://api.jquery.com/jQuery.ajax/