我在使用Node.js的Jade中有一个应用程序。这有一个项目数组,我做一个if并查找一个单词,但现在我需要在我找到的单词之后显示3个单词。
以下是我的代码的一部分:
td #{item.content}
if item.content.includes('Enviado el')
我不知道怎么显示这个?
答案 0 :(得分:0)
这是你正在寻找的吗?这将有条件地在td
。{/ p>中显示其他文字
(注意:如果你想要在item.content
之间留一个空格,你需要在你的附加文本前加两个空格)
td
| #{item.content}
if item.content.includes('Enviado el')
| your three words