TypeError: Object doesn't support this property or method

后端 未结 8 1532
梦如初夏
梦如初夏 2021-01-05 20:53

I have created rails application where I created a database (empty). When I try to view my products page, I receive the following error on my http://localhost:3000/products

8条回答
  •  温柔的废话
    2021-01-05 21:25

    If you do not use layouts, put "layout false" in the controller file, just below class title:

    class ABCController < ApplicationController "layout false" def index ... ..

提交回复
热议问题