如果可能,我只想更改看起来像这样的ejs
文件:
...
<?= comment.description -?>
...
comment.description
包含以下内容:
foo
Lorem ipsum dolor sit amet
是否可以在使用comment.description
之前在模板中执行JavaScript代码?
我只想删除comment.description
的第一行:
comment.description = comment.description.split("\n").slice(1).join("\n");
答案 0 :(得分:1)
=
表示内部的内容将在html中显示。要制作变量或计算JS,您不需要=
。
E.g:
<? comment.description = comment.description.split("\n").slice(1).join("\n"); -?>
<?= comment.description -?>