我有一个带有印象派和友好 id 的 Rails 应用程序,我想在我的文章中显示页面浏览量。问题是印象派没有记录观看次数。
在印象派的 bug tracker 上也是同样的问题。
我的文章模型:
class Article < ActiveRecord::Base
is_impressionable
extend FriendlyId
friendly_id :title, use: [:slugged, :history]
belongs_to :user
belongs_to :category
文章控制器:
def show
@article = Article.find(params[:id])
if request.path != article_path(@article)
redirect_to @article, status: :moved_permanently
end
respond_to do |format|
format.html
format.json { render json: @article }
end
end
我也重新启动了服务器,但遇到了同样的问题。