Home  >  Article  >  Backend Development  >  javascript - Please help me with the js template language mustache

javascript - Please help me with the js template language mustache

WBOY
WBOYOriginal
2016-08-27 09:06:51991browse

<code><script type="text/template" id="item-template">
    <div class="view">
        <input type="checkbox" class="toggle" {{ completed ? "checked" : "" }} >
        <label for="">{{title}}</label>
        <input type="button" class="destroy" />
    </div>
    <input type="button" value="{{title}}" class="edit">
</script>

里面的{{ completed ? "checked" : "" }}貌似解析不了,请问是该模板语言不支持吗?(mustache.js)

抱歉,问题解决了,是我把mustache当成了后端的smarty语言,`{{#completed}}checked{{/completed}}`这样就可以了,completed为真就显示,否则不输出</code>

Reply content:

<code><script type="text/template" id="item-template">
    <div class="view">
        <input type="checkbox" class="toggle" {{ completed ? "checked" : "" }} >
        <label for="">{{title}}</label>
        <input type="button" class="destroy" />
    </div>
    <input type="button" value="{{title}}" class="edit">
</script>

里面的{{ completed ? "checked" : "" }}貌似解析不了,请问是该模板语言不支持吗?(mustache.js)

抱歉,问题解决了,是我把mustache当成了后端的smarty语言,`{{#completed}}checked{{/completed}}`这样就可以了,completed为真就显示,否则不输出</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn