效果度量

{% if data.snapshot_count == 0 %}

暂无数据。请确保 XHS_ANALYTICS_ENABLED=1 且至少发布过一篇笔记。

{% else %}
{{ data.snapshot_count }}
快照次数
{{ data.notes|length }}
已发布笔记
{% if ranking %}
{{ ranking[0].alias }}
最佳账号
{% endif %}

笔记排行(按互动率)

{% for note in data.notes[:10] %} {% endfor %}
#笔记点赞评论收藏互动率
{{ loop.index }} {{ note.title[:24] }} {{ note.likes }} {{ note.comments }} {{ note.collects }} {{ "%.1f"|format(note.engagement_rate) }}
{% if ranking %}

账号对比

{% for r in ranking %} {% endfor %}
账号快照数平均互动率
{{ r.alias }}{{ r.snapshots }}{{ "%.1f"|format(r.avg_er or 0) }}
{% endif %} {% endif %}