Ajax jquery 呼び出しを使用して、Firefox でダウンロード ポップアップ ボックスをトリガーしようとしています。私のjqueryコードはこれです:
function download_clip(){
$.ajax({
url: '/controller/download_clip',
type: "GET",
complete: function (data_response) {
status = data_response.responseText; //the response variable from the presentation controller
console.log(status);
}
});
};
私のコントローラーで:
def download_clip
send_file "public/output.mp4", :type=>"video/mp4", :filename => "output.mp4", :x_sendfile=>true, :disposition => 'inline'
end
ダウンロードボックスをトリガーする方法はありますか?