Restrict file upload to some file extensions

后端 未结 4 1712
情书的邮戳
情书的邮戳 2021-02-12 15:36

I am having a problem with uploading files. I want to allow users to upload files that the system allows...

For example, I allow files having an extension of *.j

4条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-12 16:01

    The answer to this question is probably more related to html uploading than rails.

    When you want to upload a file, you typically do an input with type="file".

    This can be done in Rails by using the file_field_tag helper. It will generate an input with type="file" which can also have an accept attribute, but you can't really use that because it's not really going to have any visible effect. This attribute accepts MIME types, not extensions, and most browsers don't even use it.

    The best thing you can do is probably have a javascript check the file extension before upload (after you select the file from the dialog box). Read more about it in this question.

    The point is, you can't force the OS to show you only the file extensions that you want. You can either validate the extension by using JS for example, before upload, or check the contents of the file after upload, server side

提交回复
热议问题