gpt4 book ai didi

ruby-on-rails - 使用 Rails 5,我如何在多个 Controller / Action 中 DRY'ly 定义实例变量?

转载 作者:太空宇宙 更新时间:2023-11-03 18:04:54 24 4
gpt4 key购买 nike

我需要定义相同的实例变量:

@note = Note.new
@notes = current_user.notes.all

在多个 Controller 中:

UsersController#home
NotesController#create
NotesController#update

什么地方适合放置类/函数

def createNoteInstancesVars
@note = Note.new
@notes = current_user.notes.all
end

?

这是 Controller 问题的预期用途还是我没有想到的不同/更好的方法?如果我确实关注它,那是否意味着这些查询正在为每个 Controller #action 运行?我想避免这种情况。

最佳答案

您可以在您的 ApplicationController 中添加该方法。

然后在NotesController中添加:

before_action :create_note_instances_vars, only: [:create, :update]

UsersController 中的相同逻辑

关于ruby-on-rails - 使用 Rails 5,我如何在多个 Controller / Action 中 DRY'ly 定义实例变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49010728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com