使用gon 6.2.0和jbuilder 2.7.0的Rails 5 app
我的问题是在生产模式,但在开发中,我的生产日志正常工作:
Errno::ENOENT (No such file or directory @ rb_sysopen - app/views/productos/index.json.jbuilder):
,[2018-01-26T21:03:03.809472#7851]致命....
但该文件存在(在开发模式下它工作正常)并且日志继续下一个:
app/controllers/productos_controller.rb:19:in `index'
在第19行的控制器中我有这个:
def index
@productos = @negocio.productos.where(activo: true).order(:codigo)
gon.jbuilder //this is line 19
respond_to do |format|
所以有问题。为什么它不工作或在生产模式中找到文件?但它在开发中工作得很好吗? 感谢