truncatewords按词截断字符串
ZKEASOFT August 28, 2018
truncatewords
truncatewords
将字符串缩短为作为参数传递的单词数。 如果指定的字数小于字符串中的字数,则会在字符串后附加省略号(...)。
输入
{{ "Ground control to Major Tom." | truncatewords: 3 }}
输出
Ground control to...
自定义省略号
使用第二个参数来自定义省略号:
{{ "Ground control to Major Tom." | truncatewords: 3, "--" }}
输出
Ground control to--
无省略号
如果不想使用省略号,可用空字符串:
{{ "Ground control to Major Tom." | truncatewords: 3, "" }}