ruby-on-rails – 使用I18n.t提交按钮帮助程序

我想为提交按钮编写一个帮助程序,它会考虑操作(创建或更新)以获得正确的翻译.他们来了 :
fr: 
  submit:
    create:
      user: "Créer mon compte"
      product: "Déposer l'objet"
      session: "Se connecter"
    update:
      user: "Mettre à jour mon compte"
      product: "Modifier l'objet"@H_403_3@ 
 

我试过这个:

def submit_button(model)
  if model == nil
    I18n.t('submit.create.%{model}')
  else
    I18n.t('submit.update.%{model}')
  end
end@H_403_3@ 
 

但它没有用,rspec发给我的是:

Capybara::ElementNotFound: Unable to find button ...@H_403_3@ 
 

我知道这是一个语法问题,但我找不到如何使这项工作……

解决方法

你不需要帮助器,你可以使用普通导轨实现它.您唯一需要的是正确订购您的I18n YAML
fr:
  helpers:
    submit:
      # This will be the default ones,will take effect if no other
      # are specifically defined for the models.
      create: "Créer %{model}"
      update: "Modifier %{model}"

      # Those will however take effect for all the other models below
      # for which we define a specific label.
      user:
        create: "Créer mon compte"
        update: "Mettre à jour mon compte"
      product:
        create: "Déposer l'objet"
        update: "Modifier l'objet"
      session:
        create: "Se connecter"@H_403_3@ 
 

之后,您只需要像这样定义提交按钮:

<%= f.submit class: 'any class you want to apply' %>@H_403_3@ 
 

Rails将获取按钮所需的标签.

你可以看到更多关于它的信息here

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...