如何通过rails生成的控制器类上的show方法生成scaffold xxx empty /不包含代码?通过URL显示单个记录的代码在哪里,例如/ my_rails_app:3000 / xxx / 1存储?
该方法至少应该像这个IMO:
class ProductController # GET /students/1 # GET /students/1.json def show @item = Product.find(params[:id]) render @item end end
但它完全是空的:
class ProductController # GET /students/1 # GET /students/1.json def show end end
解决方法
如果您正在使用rails 4,那么应该有一些前行动方法,这对您来说很有意义,请检查相应的控制器.
它应该像before_action:set_product,:only => [:show,:edit,:update,:destroy]