Tag: 缺失模板

预期的反应是成功的,但是302

我有以下articles_controller: def myarticles @myarticles = current_student.articles.all respond_to do |format| format.html format.xml { render :xml => @myarticles } end end def create @article = current_student.articles.new(params[:article]) respond_to do |format| if @article.save format.html { redirect_to(@article, :notice => ‘επιτυχώς.’) } format.xml{render:xml => @article, :status => :created, :location => @article} else format.html { render :action => “new” } format.xml { […]