引导选择二 - 无法通过AJAX来填充(Bootstrap Select2 - Unable to

2019-10-18 00:39发布

我需要一些帮助搞清楚我在做什么错误。 我试图来用我的数据库用户的下拉列表。 我使用笨和萤火虫是给我的错误:

TypeError: j is undefined

视图

 <input id="users" type="hidden">

 <script>
 $("#users").select2({
        width: "element",
        ajax: {
            url: "localhost/index.php/get_clients",
            dataType: 'json',
            data: function (term, page) {
                return {
                    q: term
                };
            },
            results: function (data, page) {
                return { results: data };
            }
        }
  });
  </script>

CONTROLLER

function get_clients() {
    $this->load->model('users_model');
    $result = $this->users_model->get_all_clients();
 }

模型

 function get_all_clients() {
    $all_clients = $this->db->select('CONCAT(first_name, " ", last_name) as text, id', FALSE)
    ->get('clients')->result();
    $rows = array();
        foreach ($all_clients as $entry) {
            $rows[] = $entry;
        }
        print json_encode($rows);
}

返回是这样的:

  [{"text":"John Smith","id":"433"},{"text":"Paul Sparks","id":"434"}]

Answer 1:

对不起,我太傻了。 我想到了。 用户错误。



文章来源: Bootstrap Select2 - Unable to populate via AJAX