gpt4 book ai didi

jquery - w2ui网格重新渲染问题

转载 作者:行者123 更新时间:2023-12-01 04:43:34 25 4
gpt4 key购买 nike

我正在使用 w2ui grid (1.4) 和 Angular 1.3.4 尝试在一个 View 中渲染网格。但首先加载网格加载成功。但是当我更改 View 网格时加载失败并抛出一些错误

ERROR: The parameter "name" is not unique. There are other objects already created with the same name (obj: grid).
ERROR: The parameter "name" is not unique. There are other objects already created with the same name (obj: layout).

那么每次成功加载网格的正确方法是什么?我无法更改布局名称和网格名称。

下面是 plnkr 的链接: http://plnkr.co/edit/HzxZwJ22z2ywYmlchxFM?p=preview

最佳答案

你应该首先销毁w2ui对象

if(w2ui.hasOwnProperty('layout')){
w2ui['layout'].destroy();
}
if(w2ui.hasOwnProperty('grid')){
w2ui['grid'].destroy();
}

或重复使用它们

w2ui.layout.content('left',w2ui['grid'])

关于jquery - w2ui网格重新渲染问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33461626/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com