問題タブ [rails-generators]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ruby-on-rails-5 - Railsジェネレーターをオーバーライドして、date_selectをdate_fieldに変更します
Railsジェネレーターをオーバーライドして(を実行すると)、フォームではなくrails generate scaffold
日付型aを生成しようとしました(時刻と日付時刻についても同じです)。マッピングは次の場所にあります。date_field
date_select
railties/lib/rails/generators/generated_attribute.rb
def field_type
@field_type ||= case type
when :integer then :number_field
when :float, :decimal then :text_field
when :time then :time_select
when :datetime, :timestamp then :datetime_select
when :date then :date_select
when :text then :text_area
when :boolean then :check_box
else
:text_field
end
end
更新されたファイルをどこに置くかわかりませんgenerated_attribute.rb
。Railsアプリで試してみましたが、lib/generators/generated_attribute.rb
効果lib/templates/generators/generated_attribute.rb
がありませんでした。このファイルをオーバーライドして動作を変更することに関する他の情報は見つかりませんでした。
前もって感謝します。レールの使用 5.2
ruby-on-rails - Rails カスタム ジェネレーターをモデル ジェネレーターに接続するにはどうすればよいですか?
現在、独立したジェネレーターを作成しています。を実行するrails g query
と、動作し、ファイルが適切に作成されます。
ここでそのコード:
今、人が走っているときにジェネレーターを実行したいのですが、rails g model
達成できません。ジェネレーター モデル クラスをオーバーライドし、hook_for
それを呼び出すために a を使用しようとしましたが、機能しません。ここにコード:
あなたが私を助けてくれることを願っています。ありがとう!