作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近检查了一些网站的源码,看到了以下代码
<script type="text/html" id="tmpl-playlist-settings">
<h2>Playlist Settings</h2>
<# var emptyModel = _.isEmpty( data.model ),
isVideo = 'video' === data.controller.get('library').props.get('type'); #>
<label class="setting">
<input type="checkbox" data-setting="tracklist" <# if ( emptyModel ) { #>
checked="checked"
<# } #> />
<# if ( isVideo ) { #>
<span>Show Video List</span>
<# } else { #>
<span>Show Tracklist</span>
<# } #>
</label>
<# if ( ! isVideo ) { #>
<label class="setting">
<input type="checkbox" data-setting="artists" <# if ( emptyModel ) { #>
checked="checked"
<# } #> />
<span>Show Artist Name in Tracklist</span>
</label>
<# } #>
<label class="setting">
<input type="checkbox" data-setting="images" <# if ( emptyModel ) { #>
checked="checked"
<# } #> />
<span>Show Images</span>
</label>
</script>
我认识到该代码使用了 php 的“回显”风格(将 html 代码放入条件 IF 语句内),尽管该代码位于 <# #>
内。 。我以前从未见过这种方法。它有什么用处?
最佳答案
如果这是一个 WordPress 模板,则任意逻辑将出现在胡萝卜哈希模板标签 <#//logic#> 中。
更多信息可以在这里找到https://lkwdwrd.com/wp-template-js-templates-wp/
这可能不仅仅适用于 wordpress。
<# if ( data.trueValue ) { #>
<p> I am only output if <code>data.trueValue</code> is true.
<# } #>
但也可能适用于其他模板语言,其他变体可能是:
<% ... %>
, {{...}}
等等,具体取决于模板引擎。
关于javascript - 有<# #>标签吗?如果不是的话,它在这段代码中有什么用处,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42853993/
我正在阅读有关 Edit Distance between 2 strings 的问题。 它可以使用编辑距离的公式通过动态规划来解决。我无法理解的是它的用处。首先,这与知道 2 个字符串的最长公共(p
我是一名优秀的程序员,十分优秀!