我设法让自己陷入了一个我正在努力的项目中的麻烦。
最初该网站上有一个使用Knockout的页面,其他页面使用jQuery。由于Foundation模式将自身置于body元素的根中的一些问题,我最终将此页面的viewmodel的绑定应用于body元素。
快进4个月,没有预见到我现在遇到的麻烦,我去了Knockout重建了我们的购物篮。购物篮在每个页面上都可见,并使用ZF2部分包含在内。
回到我4个月前工作的页面,它完全被控制台中的错误消息说:
Uncaught Error: You cannot apply bindings multiple times to the same element.
这是显示我的布局的一些代码:
<html>
<head>
<title>My Website</title>
</head>
<body> // 4 month old SPA bound here
<nav>
<div id='shopping-basket'> // Shopping basket bound here
...
</div>
</nav>
<div id='my-app'>
...
</div>
</body>
</html>
JavaScript的:
var MyAppViewModel = function() {
// logic
};
var ShoppingBasketViewModel = function() {
//logic
};
ko.applyBindings(new MyAppViewModel(), document.body);
ko.applyBindings(new ShoppingBasketViewModel(), document.getElementById('shopping-basket');
如果我有时间,我可以返回并重新编写原始应用程序,将其放置在自己的div容器中,该容器将与篮子并排放置,但不幸的是,这不是一个选项。
另一种选择是放弃我在购物篮上所做的最后一点工作并用jQuery替换它,但这意味着要失去一周的工作量。
无论如何,当我应用绑定时,我可以让两个视图模型并排工作,同时嵌套在Dom中,并保持彼此独立?
答案 0 :(得分:4)
我有一些类似的问题。我需要将绑定应用于特定的嵌套元素,并首先在文档上开始绑定。同样的问题。我的解决方案是添加一些ignore元素部分,然后手动绑定特定元素。
1)添加自定义绑定,以便您可以跳过特定购物篮上的绑定:
ko.bindingHandlers.stopBinding = {
init: function() {
return { controlsDescendantBindings: true };
}
};
ko.virtualElements.allowedBindings.stopBinding = true;
2)在你的html中添加自定义绑定(围绕你的购物篮):
<html>
<head>
<title>My Website</title>
</head>
<body> // 4 month old SPA bound here
<nav>
<!-- ko stopBinding: true -->
<div id='shopping-basket'> // Shopping basket bound here
...
</div>
<!-- /ko -->
</nav>
<div id='my-app'>
...
</div>
</body>
3)按照您的方式应用您的绑定:
ko.applyBindings(new MyAppViewModel(), document.body);
ko.applyBindings(new ShoppingBasketViewModel(), document.getElementById('shopping-basket');
4)第一个绑定将跳过购物篮,因为你的自定义绑定处理程序,你的第二个绑定将显式绑定购物篮。
我还没有在您的具体示例中测试上面的代码,但它应该指向正确的方向。