我使用的是nutzwk3.3.x,在网页使用select2
<select class="js-example-data-array"></select>
var data = [{ id: 0, text: 'enhancement' }, { id: 1, text: 'bug' }, { id: 2, text: 'duplicate' }, { id: 3, text: 'invalid' }, { id: 4, text: 'wontfix' }];
$(function () {
initDatatable();
initDatetimepicker();
$(".js-example-data-array").select2({
data: data
})
});
一直提示
Option 'data' is not allowed for Select2 when attached to a <select> element
我在其他项目中都是这么用的啊,select2引用的是项目plugins中的,求指教下。。。