以下是我的域名的基本概述:
从那里,我看到两个选项:
欢迎任何替代选择:)
感谢您的帮助。
P上。
答案 0 :(得分:0)
在课程控制器中:
def index
@courses = Course.all
if @courses.length == 1 #if only one course
@course = @courses[0] #get that course
session[:course_id] = @course.id #set the session
redirect_to :action => "show", :param => "#{@course.id}" #redirect
end
respond_to do |format|
format.html
format.xml { render :xml => @line_items }
end
end