2016-08-01 7 views
1

Liquid Web TemplatesのAdxStudioでこのエラーに直面しています。液体エラー:タイプ 'System.Int32'のオブジェクトをタイプ 'System.String'にキャストすることができません

液体エラー:タイプ 'System.Int32'のオブジェクトを 'System.String'とタイプすることができません。

私のコードは以下の通りです:

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

感謝。

答えて

1

これを試してください:

カウント具体的なフォーラムの投稿:

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

カウント具体的なフォーラム、特定のスレッドが数s:

<div>Posts count: {{website.forums[1].threads.all[0].post_count}}</div> 
関連する問題