filename
次のように、JavaScript 変数を Ruby コードに挿入しようとしています。
"#{ajax_download_report_url(" + filename+ ")}"
これは基本的なルート URL ですが、この Ajax リクエストから取得するため、HAML でこの変数を渡す必要があります。
:javascript
var updaterId = setInterval(function() {
$.ajax({
url: #{admin_reports_url.to_json},
dataType: "json",
type: "GET",
data: {job_id: "#{job_id}"},
success: function(response){
var filename = response.file;
switch(status) {
case 'failed':
$('.loader').hide();
clearInterval(updaterId);
alert(message);
break;
case 'completed':
$('.loader').hide();
clearInterval(updaterId);
location.href = "#{ajax_download_report_admin_reports_url(" + filename+ ")}";
break;
}
}
})}, 1000);
今、私はエラーがあります:
ActionController::RoutingError - No route matches
{:controller=>"admin/reports", :action=>"ajax_download_report", :file=>" + filename+ "}
これは、HAML がこのコードを適切に評価できないことを意味します。