本文介绍了如何使用流星和车把截断字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在jinja2(python)模板引擎中,截断字符串是一件简单的事:

  {{fooText | truncate(200 )}} 

流星(handlebars)是否提供类似这样的内容?

解决方案

我从来没有在(流星模板使用的引擎),但你可以做一个帮手来完成这个(例如全局的 r)。

 Template.registerHelper('text',function(passedString){
var fooText = passedString.substring(0,1); //与truncate相同
return new Spacebars.SafeString(fooText)
});

并像 {{text myString}}



这里我们使用一些和。


In jinja2(python) template engine there is a simple thing for truncating strings:

{{ fooText|truncate(200) }}

Does meteor(handlebars) provides something like this?

解决方案

I never use | on spacebars (the engine used on meteor template), but you can do a helper to accomplish this(for example a global Template.registerHelperr).

Template.registerHelper('text', function(passedString) {
    var fooText = passedString.substring(0,1); //same as truncate.
    return new Spacebars.SafeString(fooText)
});

And use it like {{ text myString}}

Here we are using some Blaze and the substring method.

这篇关于如何使用流星和车把截断字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 12:19