TAL 删除每个 TAG

TAL removes every TAG

我在 Pyramids Framework 和 TAL 中使用 Chameleon。不幸的是,TAL 删除了所有标签,直到第一个标签。

HTML-模板:

<label tal:attributes="for item.id">
    <span i18n:translate="Because:" tal:condition="item.leading_because">Because:</span>
    <span tal:repeat="premise item.premises" tal:attributes="for item.id; id premise.id">
        <span tal:attributes="for item.id; id premise.id" tal:content="premise.title">premise</span>
        <span tal:condition="not:repeat.premise.end">
            <i><span i18n:translate="and"> and </span></i>
        </span>
    </span>
</label>

渲染示例:

<li>
    <input type="radio" name="discussion-button-group" onclick="location.href=&quot;http://localhost:4284/d/cat-or-dog/r/11/undermine/29&quot;" id="11">
    <label for="11">
        Because: Cats are fluffy and Cats are small
    </label>

现在我在 "Because ..." 中丢失了所有 span-Tags,有人知道吗,为什么?

感谢

我觉得你的结束标签搞砸了。你没有配对。

经过对神秘跨度和 label-tag 的一些测试和思考,这将解决任何问题:

<li tal:repeat="item items">
    <input type="radio" name="discussion-button-group" onclick="" tal:attributes="id item.id; onclick item.url">
    <label tal:attributes="for item.id" tal:condition="item.leading_because">
        <span tal:omit-tag="" tal:attributes="for item.id" i18n:translate="Because:">Because:</span>&nbsp;
    </label>
        <span tal:repeat="premise item.premises" tal:omit-tag="">
        <label tal:attributes="for item.id; id premise.id" tal:content="premise.title">premise</label>
    <label tal:condition="not:repeat.premise.end">&nbsp;<em i18n:translate="and">and</em>&nbsp;</label>
</span>

所以我将有一个充满标签的输入标签:)