3、Fluid添加阅读量统计

Email · 账号 · LeanCloud(特别注意:必须是国际版的LeanCloud官网,否则无效,不知道是什么原因)

一、首先注册LeanCloud账号

二、添加阅读量

第一步:创建应用

image-20240122100549325image-20240122100628089

第二步:找到 AppIDAppKey,记录下来后面配置要用

image-20240122100905076

第三步:修改Fluid的配置文件fluid/_config.yml文件(单篇文章阅读量计数)

打开统计开关:
1
2
web analytics:
enable: true
配置leancloudapp_idapp_key
1
2
3
4
leancloud:
app_id:
app_key:

打开计数功能,统计来源改为leancloud
1
2
3
4
views:
enable: true
source:"leancloud"
format: "{}次"
页面底部展示网站的 PV,UV 统计数
1
2
3
4
5
statistics:
enable: true
source: "leancloud"
pv_format: "总访问量{}次"
uv_format: "总访客数{}人"