带有嵌套模板的 Javascript 框架或 knockoutjs 库

发布于 2024-11-02 12:08:47 字数 317 浏览 0 评论 0原文

我可以在 kockoutjs 库中使用多个层次结构进行嵌套模板化吗? http://knockoutjs.com/ 或任何其他 Javascript 框架?

我有这个视图:

DataGrid:
Cell1, Cell2, Cell3, Within Cell4 is a ListBox.

无论它在 html 中看起来像什么。是否可以使用 knockoutjs 或任何其他 javascript 框架创建具有多个层次结构的嵌套模板?

Can I do nested templated with more than one hierarchy in for example kockoutjs library? http://knockoutjs.com/ or any other Javascript framework?

I have this View:

DataGrid:
Cell1, Cell2, Cell3, Within Cell4 is a ListBox.

Whatever it looks like in html. Is it possible with knockoutjs or any other javascript framework to create nested templates with multiple hierarchies?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的呼吸 2024-11-09 12:08:47

是的,在淘汰赛中有可能。

您可以在根元素内指定模板名称:

<ul data-bind="template: {name: listItemTmpl, foreach: items()}"></ul>

然后在该模板内,您还可以通过 data-bind 属性引用其他模板:

<script id="listItemTmpl" type="text/x-jquery-tmpl">
    <li>
        <h3 data-bind="text: name"></h3>
        <div data-bind="template: itemDetailsTmpl"></div>
    </li>
</script>

Knockout 将应用根模板绑定,并在遇到 data- 时应用根模板绑定。在该模板内绑定属性,它会递归地应用这些属性。

在我的示例中,它将为每个 items() 应用 listItemTmpl,然后对于每个 itemDetailsTmpl 它将使用 itemDetailsTmpl 显示详细信息。

就性能而言,它的速度非常快并且用户不会注意到。

我在当前的项目中以这种方式使用淘汰模板,递归模板使我可以将部分标记组织在小部分中。

这是您正在寻找的东西吗?

Yes, it is possible in Knockout.

You can specify a template name inside a root element:

<ul data-bind="template: {name: listItemTmpl, foreach: items()}"></ul>

and then inside that template you can also reference other templates via data-bind attribute:

<script id="listItemTmpl" type="text/x-jquery-tmpl">
    <li>
        <h3 data-bind="text: name"></h3>
        <div data-bind="template: itemDetailsTmpl"></div>
    </li>
</script>

Knockout will apply root template binding and as it encounters data-bind attributes inside that template it applies those recursively.

Im my sample it will apply listItemTmpl for each of items() and then for each of those it will use itemDetailsTmpl to show the details.

Performance-wise it's very fast and unnoticable for the user.

I use knockout templates in this manner in my current project and recursive templating lets me keep parts of my markup orginized in small sections.

Is this something that you were looking for?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文