我需要在上方某处输出 {{post.content}} 的前100个字母,然后输出 {{post.content}} 的第二部分>在下面。
{{post.content.length(100)}} //to display the first 100 characters
{{post.content.length(-100)}} //to remove the first 100 characters
以上似乎不适用于此目的。我想知道是否有一个优雅的解决方案(maybee像“。length()” 一样内置在Timber中)?
答案 0 :(得分:1)
不幸的是,Timber现在没有内置任何功能。我建议为您的帖子编写一个自定义类,并制作以下离散函数:
public class DivisionService : IDivisionService
{
public DivisionService(IArticleRepository article)
{
_article = article;
}
}
答案 1 :(得分:0)