我在液体网页模板中的AdxStudio期间遇到此错误。
液体错误:无法转换类型为#System; Int32'的对象输入' System.String'。
我的代码如下:
<div>Posts count: {{website.forums[1].threads[0].posts.post_count}}</div>
感谢。
答案 0 :(得分:1)
请尝试:
计算特定论坛帖子:
<div>Posts count: {{website.forums[1].post_count}}</div>
统计特定论坛,特定线程数:
<div>Posts count: {{website.forums[1].threads.all[0].post_count}}</div>