创建教程和类别之间的关联

时间:2015-11-17 14:59:09

标签: ruby-on-rails-3 associations

我创建了一个教程部分和类别部分。现在我想在这两个部分之间创建关联。我在我的教程模型中添加了has_many。 这是我的教程模型定义:

class Tutorial < ActiveRecord::Base
    has_many :tutorialcategories

我在show方法中收到错误“未定义的方法教程类别”。

这是我的tutorialcategories控制器的定义

class TutorialcategoriesController < ApplicationController
    respond_to :json

  def show
    @tutorials=Tutorial.order("id ASC").all
    @category = Tutorialcategory.find(params[:id])

0 个答案:

没有答案