【Amon2】出力内容に名前を付けて保存するダイアログを出すレスポンス

  • 2014-6-13

$c->create_response(200, [
‘Content-Type’ => ‘application/octet-stream’,
‘Content-Disposition’=>’inline’,’filename’=>’test.txt’
], ["hello"]);

正解

$c->create_response(200, [
‘Content-Type’ => ‘application/octet-stream’,
‘Content-Disposition’=>’inline;filename=test.txt’
], ["hello"]);

ここで引っかかる人は多いかと。

関連記事

ページ上部へ戻る