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.
在最近的回形针 gem 升级中,我注意到上传的文件名正在修改,并且一些字符正在更改为下划线。
我不喜欢将空格更改为下划线的事实。文件名中的空格有什么问题?90年代已经过去了。。
经过一番挖掘,我发现了 has_attached_file 的这个未记录的选项:
:restricted_characters
此选项的默认值似乎是这样的:
:restricted_characters => /[&$+,\/:;=?@<>\[\]\{\}\|\\\^~%# ]/,
最后一个是空格。删除它,你很好。