Select2与未为Select2 <select2-id> </select2-id>定义的Uncaught查询功能有很大不同

时间:2013-07-08 09:29:49

标签: html5 backbone.js marionette jquery-select2 bootstrapping

我按以下方式加载select2的值。

声明类型

var  AdjustmentType = Backbone.Model.extend({
            url : Hexgen.getContextPath("/referencedata/adjustmenttype")
    });

为类型

创建实例
var adjustmentTypes = new AdjustmentType();

将值加载到select2框

adjustmentTypes.fetch({
                    success : function() {
                        for(var count in adjustmentTypes.attributes) {
                            $("#adjustment-type").append("<option>" + adjustmentTypes.attributes[count] + "</option>");
                        }
                    }
                });  
                $("#adjustment-type").select2({
                     placeholder: "Select Adjustment Type",
                     allowClear: true
                 });

我的HTML代码

<div class="span4">
        <div>ADJUSTMENT TYPE</div>
        <select id="adjustment-type" tabindex="5" style="width:200px;">
            <option value=""></option>
        </select>
    </div>

当我为第一个加载它时它没有给出任何例外,但是如果我Refreshnavigate to different URL我得到以下异常:

Uncaught query function not defined for Select2 adjustment-type

1 个答案:

答案 0 :(得分:12)

“查询”是指用于检查搜索字词的列表。您需要确保data属性是正确的对象数组(即您的选项元素)。