我遇到了这种情况。让我解释如下。我有一个电影模型,对于电影,用户可以给出评级,他可以评论电影。所以我有积分表。根据评论的数量,评级和平均评分e.t.c我在电影控制器中写了一个方法def points end。
我有一个评论控制器和方法分别用于创建评论,为了评价电影,我在电影控制器中编写了一个用于创建评级的方法。希望我清楚到现在。
所以我的问题陈述是。我想在创建评级和评论时在电影控制器中调用此点数方法。
简要介绍我在这里粘贴我的代码。
在电影控制器中我的两种方法(评分和分数)
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
@div_one=@ratings_of_each_user*@total_comments_by_user
@div_two=@over_all_comments_of_movie* @average_rating
@total=0.0
@total=@div_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 :(得分:0)
不要打电话给其他控制器。如果您需要共享方法,请确保它在模型中(如果它是正确的位置)或在ApplicationController之类的共享控制器中
...还
unless @test.nil? || @test.blank?
- String#blank?
检查.nil?第一。那么.nil?没有必要。