带有嵌套模板的 Javascript 框架或 knockoutjs 库
我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,在淘汰赛中有可能。
您可以在根元素内指定模板名称:
然后在该模板内,您还可以通过 data-bind 属性引用其他模板:
Knockout 将应用根模板绑定,并在遇到 data- 时应用根模板绑定。在该模板内绑定属性,它会递归地应用这些属性。
在我的示例中,它将为每个
items()
应用listItemTmpl
,然后对于每个itemDetailsTmpl
它将使用itemDetailsTmpl
显示详细信息。就性能而言,它的速度非常快并且用户不会注意到。
我在当前的项目中以这种方式使用淘汰模板,递归模板使我可以将部分标记组织在小部分中。
这是您正在寻找的东西吗?
Yes, it is possible in Knockout.
You can specify a template name inside a root element:
and then inside that template you can also reference other templates via
data-bind
attribute: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 ofitems()
and then for each of those it will useitemDetailsTmpl
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?