自定义响应程序应该放在 Rails 项目中的哪里?
我需要在“模块响应程序”下实现自定义响应程序,但是,我不确定这样的代码应该放在哪里?
I need to implement a custom Responder under "Module Responders", however, I am not sure where such code should live?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这通常是
lib
目录的用途。请务必更新您的
config/application.rb
文件以将lib
包含在autoload_paths
中。This is typically what the
lib
directory is for.Just be sure to update your
config/application.rb
file to includelib
inautoload_paths
.我通常将它们放在
app/responders
中I usually drop them in
app/responders