Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
opa データベースからファイルをダウンロードしようとしています。私は次のコードを使用しました:
case {path:[], query:[("download", filename)], ...} : Resource.binary(/myDatabase[filename], "application/txt")
正常に動作していますが、ダウンロードするファイルの名前は常に「download.txt」です。この名前を変更するにはどうすればよいですか?
ありがとう
case {path:[], query:[("download", filename)], ...} : Resource.binary(/myDatabase[filename], "application/txt") |> Resource.add_header(_, {content_disposition={attachment=filename}})