truncate按长度截断字符串

truncate按长度截断字符串

ZKEASOFT August 28, 2018


truncate

truncate将字符串缩短为作为参数传递的字符数。 如果指定的字符数小于字符串的长度,则将省略号(...)附加到字符串并包含在字符计数中。

输入

{{ "Ground control to Major Tom." | truncate: 20 }}

输出

Ground control to...

自定义省略号

使用第二个参数来自定义省略号:

{{ "Ground control to Major Tom." | truncate: 25, ", and so on" }}

输出

Ground control, and so on

无省略号

如果不想使用省略号,可用空字符串:

{{ "Ground control to Major Tom." | truncate: 20, "" }}

微信公众号