我是Handlebars模板系统的新手,这是我使用 Handlebars 开展的第一个项目。我创建了简单的模板:
<script id="article_list_template" type="text/x-handlebars-template">
{{#each this}}
<div class='article'>
<a href='article.php?id={{id_news}}' data-article_id='{{id_news}}'>
<h1>{{title}}</h1>
</a>
<p> {{{content}}} </p>
<div style='clear: both;'> </div>
</div>
{{/each}}
</script>
退货content
时间很长。我希望它更短,例如 150 个字符。我试图使用 JavaScriptsubstring()
方法如下:
<p> {{{content.substring(0,150)}}} </p>
但这显然不起作用。你能给我一些提示如何处理这个问题吗?谢谢
编辑:好的,问题解决了:我已经在 PHP 中完成了,所以返回的内容现在有适当的长度:
foreach ($articles as $a) {
$a->content = cut_text( $a->content, 30);
}