2
如何在ruby/rails中設置下載頭文件?ruby on rails:音頻/ mp3內容頭文件下載
在PHP中你可以設置標題爲MP3下載是這樣的:
header("Content-Transfer-Encoding: binary");
header("Content-type: audio/mp3");
header("Content-Disposition: attachment; filename=\"$songname.mp3\"");
header("Content-Length: " . $size);
@readfile("http://example.com/12345.mp3");
好像應該有一個簡單的解決方案。
我沒有發現這樣的:
response.headers['Content-type'] = 'Content-type: audio/mp3'
但我不知道如何/在ReadFile的會發揮作用,其他頭。
謝謝!