使用form_with时如何删除“ utf8 =✓”?

时间:2018-10-02 08:36:04

标签: ruby-on-rails ruby-on-rails-5

使用form_with时,Rails会自动向表单添加UTF-8参数。您如何删除它?

1 个答案:

答案 0 :(得分:0)

:skip_enforcing_utf8选项设置为true。例如:

<%= form_with(model: @post, url: super_posts_path, skip_enforcing_utf8: true) %>

更多信息here