0

我是新的 ti 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”。请帮我。

4

1 回答 1

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/

于 2012-12-12T06:32:28.210 回答