目前尚不清楚您要做什么。您想将控制器变量访问到 jquery 视图中,还是希望从 ajax jquery 函数请求控制器操作并从响应中获取一些数据?
我认为你想做第一件事,所以你可以在控制器上做:
class MyController < ApplicationController
def my_action
@file_content = some_content
end
end
在视图 my_action.html.erb
<script type="text/javascript">
$(document).ready(function() {
$("#play").click(function() {
$.get("/requests/download_log", { filename: <%= j @file_content %> });
});
});
</script>
现在,如果碰巧你想做我说的第二件事,你可以做
class MyController < ApplicationController
def download_log
@file_content = some_content
respond_to do |format|
format.json { render json: @file_content.to_json }
end
end
end
并且在视图中
success_handler = function(json_data) {
// Do any operation with the json_data
}
error_handler = function(jqXHR, textStatus, errorThrown) {
// Handle ajax errors here
}
$("#play").click(function() {
$.ajax("/requests/download_log.json", dataType: "json", success: success_handler, error: error_handler);
});