如何处理“在未使用 Select2 的元素上调用了 select2('destroy') 方法”

how to handle " The select2('destroy') method was called on an element that is not using Select2"

我正在使用 ui-select2 并尝试通过单击编辑按钮打开新页面。我看到一些奇怪的问题。第一次打开新页面时它打开得很好,但是当我取消它并再次打开同一页面时,通过单击编辑,它给我以下错误:

select2.full.min.js:3 The select2('destroy') method was called on an element that is not using Select2
angular.js:13708 TypeError: Cannot read property 'destroy' of undefined
at n.a.fn.select2 (select2.full.min.js:3)
at HTMLSelectElement.<anonymous> (select2.js:175)
at HTMLSelectElement.dispatch (jQuery-2.1.4.min.js:3)
at HTMLSelectElement.r.handle (jQuery-2.1.4.min.js:3)
at Object.trigger (jQuery-2.1.4.min.js:3)
at n.triggerHandler (jQuery-2.1.4.min.js:3)
at Function.pa.fn.on.pa.cleanData (angular.js:1865)
at n.remove (jQuery-2.1.4.min.js:3)
at angular.js:5504
at Object.push (angular.js:5085)

通过阅读此消息,我似乎必须定义 destroy 方法,但我不知道如何在我的控制器中定义 destroy 方法以及如何调用取消按钮(取消方法)调用。 以下是 select 的代码片段:

<select ui-select2 class="form-control input-lg" ng-model="cityId" ng-change="loadLocality()">
                                <option ng-repeat="city in cities|orderBy:'name'|filter:'ACTIVE':true" value="{{city.id}}">{{city.name}}</option>
                            </select>

像这样对 select2 使用简单的检查:

if ($('select').data('select2')) {
   $('select').select2('destroy');
 }

我在 GitHub 问题中找到了代码 https://github.com/aldeed/meteor-autoform-select2/issues/44

来自官方文档:https://select2.org/programmatic-control/methods#checking-if-the-plugin-is-initialized

您可以检查您的 select 是否具有 class '.select2-hidden-accessible' .

$("select.select2-hidden-accessible").select2('destroy');