1

我在 Liquid Web 模板中的 AdxStudio 期间遇到了这个错误。

Liquid 错误:无法将“System.Int32”类型的对象转换为“System.String”类型。

我的代码如下:

<div>Posts count: {{website.forums[1].threads[0].posts.post_count}}</div>

谢谢。

4

1 回答 1

1

请试试这个:

统计特定论坛帖子:

<div>Posts count: {{website.forums[1].post_count}}</div>

计算特定论坛的特定线程数:

<div>Posts count: {{website.forums[1].threads.all[0].post_count}}</div>
于 2016-08-01T10:49:26.007 回答