gpt4 book ai didi

node.js - node.js jade 文件中的这个符号 != 是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 22:01:38 26 4
gpt4 key购买 nike

我可以知道下面 .jade 文件中的代码是什么意思吗?特别是符号“!=”?

body section.contaner!= body

谢谢

最佳答案

在 Jade 模板中 != 表示将显示未转义的内容

示例:

p= 'This code is' + ' <escaped>!'

给予

<p>This code is &lt;escaped&gt;!</p>

这个例子:

p!= 'This code is <strong>not</strong> escaped!'

给予

<p>This code is <strong>not</strong> escaped!</p>

您可以看到,在第一个示例中仅使用了 =,而第二个示例则使用了 !=

希望这会有所帮助。

关于node.js - node.js jade 文件中的这个符号 != 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21822560/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com