淘汰赛 3.2:组件/自定义元素可以包含子内容吗?



我可以创建使用子标记的非空 Knockout 组件吗?

例如,

用于显示模式对话框的组件,例如:

<modal-dialog>
  <h1>Are you sure you want to quit?</h1>
  <p>All unsaved changes will be lost</p>
</modal-dialog>

其中与组件模板一起:

<div class="modal">
  <header>
    <button>X</button>
  </header>
  <section>
    <!-- component child content somehow goes here -->
  </section>
  <footer>
    <button>Cancel</button>
    <button>Confirm</button>
  </footer>
</div>

输出:

<div class="modal">
  <header>
    <button>X</button>
  </header>
  <section>
    <h1>Are you sure you want to quit?</h1>
    <p>All unsaved changes will be lost</p>
  </section>
  <footer>
    <button>Cancel</button>
    <button>Confirm</button>
  </footer>
</div>

这在 3.2 中是不可能的,但在下一个版本中是可能的,请参阅此提交和此测试。

现在,您必须通过params属性将参数传递给组件定义组件以期望content参数:

ko.components.register('modal-dialog', {
    viewModel: function(params) {
        this.content = ko.observable(params && params.content || '');
    },
    template:
        '<div class="modal">' +
            '<header>' +
                '<button>X</button>' +
            '</header>' +
            '<section data-bind="html: content" />' +
            '<footer>' +
                '<button>Cancel</button>' +
                '<button>Confirm</button>' +
            '</footer>' +
        '</div>'
});

通过params属性传递内容参数

<modal-dialog params='content: "<h1>Are you sure you want to quit?</h1> <p>All unsaved changes will be lost</p>"'>
</modal-dialog>

见小提琴

在新版本中,您可以使用$componentTemplateNodes

ko.components.register('modal-dialog', {
    template:
        '<div class="modal">' +
            '<header>' +
                '<button>X</button>' +
            '</header>' +
            '<section data-bind="template: { nodes: $componentTemplateNodes }" />' +
            '<footer>' +
                '<button>Cancel</button>' +
                '<button>Confirm</button>' +
            '</footer>' +
        '</div>'
});

在父组件中的用法:

<modal-dialog><div>This div is displayed in the <section> element of the modal-dialog</div>
</modal-dialog>

附言您可以手动构建最新版本的挖空以使用上面的代码。

相关内容

  • 没有找到相关文章

最新更新