• 締切済み

ruby on railsのコントローラー内でputsが動作しない

タイトルのままなのですが、railsを現在勉強中です。 簡単なデバッグでsample_controller.rb内でputsやprintで変数を表示させようとしてるのですが、まったく表示されません。 なぜこのような現象がおこるのでしょう? htmlの表示はくずれるもののブラウザに表示されるかと思ったのですが。 「テンプレート使えばいい」というのはごもっともなのですが、疑問解消にお力添えいただければ幸いです。

みんなの回答

  • asuncion
  • ベストアンサー率33% (2127/6289)
回答No.1

> 簡単なデバッグでsample_controller.rb内でputsやprintで変数を表示させようとしてるのですが、まったく表示されません。 中身を見せていただくことは可能ですか?

eltech
質問者

補足

返信、ありがとうございます。 下記がソースとなります。 listメソッドに該当する箇所があります。 class AdminController < ApplicationController def index list render :action => 'list' end # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) verify :method => :post, :only => [ :destroy, :create, :update ], :redirect_to => { :action => :list } def list puts "test" @article_pages, @articles = paginate :articles, :per_page => 10 end def show @article = Article.find(params[:id]) end def new @article = Article.new end def create @article = Article.new(params[:article]) if @article.save flash[:notice] = 'Article was successfully created.' redirect_to :action => 'list' else render :action => 'new' end end def edit @article = Article.find(params[:id]) end def update @article = Article.find(params[:id]) if @article.update_attributes(params[:article]) flash[:notice] = 'Article was successfully updated.' redirect_to :action => 'show', :id => @article else render :action => 'edit' end end def destroy Article.find(params[:id]).destroy redirect_to :action => 'list' end end

関連するQ&A