我在应用程序中使用了简单表单,我想删除*来指示所有表单(现有表单和尚未创建的表单)都需要一个属性。

我尝试设置simple_form.rb:

  # Whether attributes are required by default (or not). Default is true.
  config.required_by_default = false

而且我试图修改simple_form.en.yml:
   required:
      text: 'required'
      mark: ''  # <------ tried setting this to blank.

我知道我可以在每个字段上设置:required => false,但是我想清理 View 并设置一次。

最佳答案

如果重新启动服务器,则将simple_form.required.mask设置为''应该可以工作。

但是您可以通过更改配置将其删除:

# config.label_text = proc { |label, required| "#{required} #{label}" }


config.label_text = proc { |label, required| "#{label}" }

关于ruby-on-rails - Rails simple_form属性必需标记(*),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7592536/

10-15 23:42