2011-07-16 110 views
0

我陷入了這種情況。讓我解釋如下。我有一個電影模型,用戶可以給一個評級的電影,他可以評論一部電影。所以我有分表。根據評論的數量,評分和平均評分e.t.c,我在電影控制器中編寫了一個def point def結束方法。如何在控制器和其他控制器中調用方法

我有一個評論控制器和方法在它分別爲創建評論和評級電影我寫了一個方法在我的電影控制器創建評級。希望我明白直到現在。

所以我的問題陳述是。我想在製作評分和評論時在電影控制器中調用這個點數方法。

簡要見解我粘貼我的代碼在這裏。

在電影控制器我的兩個方法(收視率和點)

def rate 

    @movie= Movie.find(params[:movie_id]) 

    @count=0 

    @test= Rating.find(:last, :conditions=>['movie_id=?', @movie.id]) 

    unless @test.nil? || @test.blank? 

    @count= @test.count 


    end 

     if(params[:submitted]) 

      if @movie.ratings.create(:movie_id => params[:movie_id], :rate => params[:rating], :user_id=> current_user.id, :count=> @count+1) 

       points  

       flash[:success] = "Rating was successfully saved." 

      else 

       flash[:error] = 'Error. Rating was not saved. Try again later.' 

      end 

      redirect_to @movie 

      end 


end 

def points 

    @user= current_user 

    @movie= Movie.find(params[:movie_id]) 

    total_comments_by_user=Comment.find(:all, :conditions=>['user_id=? AND movie_id=?',@user.id,@movie.id]).count 

    user_who_rated= Rating.find(:all, :conditions=>['user_id=? AND movie_id=?',@user.id,@movie.id]) 

    @user_who_rated.each do |ur| 

     if @user=ur.user_id 

     @ratings_of_each_user=ur.rate 

    end 

     end 


    @over_all_comments_of_movie=Comment.find(:all, :conditions=> ['movie_id=?', @movie.id]).count 


@records=Rating.find(:all, :conditions => ['movie_id=?',@movie.id]).collect(& :rate) 

    unless @records.nil? || @records.blank? 

     @average_rating = 0.0 

     @records.each do |r| 

      @average_rating += r 

     end 

    @average_rating = @average_rating/@records.size 

end 


    unless @ratings_of_each_user.nil? || @ratings_of_each_user.blank? 

    if @total_comments_by_user.nil? || @total_comments_by_user.blank? 

    else 

    @[email protected]_of_each_user*@total_comments_by_user 

    @[email protected]_all_comments_of_movie* @average_rating 

     @total=0.0 

     @[email protected]_one.to_f/@div_two.to_f 


@find_user_in_points= Point.find(:all, :conditions=> ['user_id=? AND movie_id=?',current_user.id,@movie.id]) 

    if @find_user_in_points.nil? || @find_user_in_points.blank? 

    Point.create(:user_id=> current_user.id, :movie_id=>@movie.id, :points=> @total) 

    else 

     @find_user_in_points.each do |f| 

     if f.user_id= current_user.id 

      f. update_attributes(:points=> @total) 

     end 

    end 

     end 

     end 

    end 

    end 

現在評論控制器

def create 

    @user=current_user 

    @movie = Movie.find(params[:movie_id]) 

    @select_params= params[:choice_list] || [] 

    if @select_params.nil? || @select_params.blank? 

     @comment = @movie.comments.create(params[:comment])   


     @comment.update_attributes(:user_id=>@user.id, :commenter => @user.username) 

    else 

    @comment= @movie.comments.create(:commenter => "user", :body=>params[:comment][:body] , :movie_id=> @movie.id, :user_id=>@user) 

     end 

    redirect_to movie_path(@movie) 
    end 

def destroy 

    @comment = Comment.find(:all, :conditions=>['id=?',params[:id]]) 
    @comment.delete 
    redirect_to movie_path(@movie) 
    end 

我有我的看法文件和表格率影片的鏈接添加到評論電影。我只是想創建評分時創建評論並創建評論,以便我可以在內部執行我的積分計算並更新我的積分表。

請引導我。是否有可能從另一個控制器調用一個控制器中的方法,如果是這樣,並告訴我如何在同一個控制器中調用一個方法。

+0

爲什麼你不會創建一個可以從兩個控制器調用的共享方法?您真的不應該從控制器B調用控制器A ...控制器方法僅適用於瀏覽器請求。 – iwasrobbed

回答

0

請勿調用其他控制器。如果您需要共享的方法,無論是確保其在模型中(如果那是它的正確位置),或者在像ApplicationController中

而且共享控制器... unless @test.nil? || @test.blank? - String#blank?檢查.nil?第一。那麼.nil?沒有必要。

相關問題