主页

在个人博客中增加显示博客总数的功能

2023-08-11 11:03AM

1. 在 app/controller/articles_controller 里面增加

def   index

    @total_count = @articles.size

end

2. 在 app/views/articles/index.html.erb 里面增加

 <p>博客总数: <%= @total_count %></p>

做完上面两个步骤,你个人博客中的index页面就可以显示博客总数了

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论