我在模态中有一个组件绑定:
<button type="button" data-toggle="modal" data-target="#myModal">New</button>
<div data-bind="component: 'wizard'" id="myModal" class="modal" role="dialog"></div>
我想在单击按钮时显示一个新向导。但是,在这种情况下,组件被加载一次,单击New
按钮总是会弹出带有先前值的模式。
wizard
每次单击按钮时是否可以加载组件的新实例New
?