好的,已经盯着这个看了两个小时了。
我正在views/categories/index.html.haml中的HAML中尝试一个空表单
=form_for @categories do |f|
=f.submit
我的 categories_controller.rb 看起来像......
class CategoriesController < ApplicationController
# GET /categories
# GET /categories.json
def index
@categories = Category.all
respond_to do |format|
format.html # index.html.haml
format.json { render json: @categories }
end
end
end
我得到了......类别中的 NoMethodError #index 未定义方法 `model_name' for NilClass:Class
我知道这很容易,但我现在的想法很混乱。