จะใช้ Select2 กับ JSON ผ่านคำขอ Ajax ได้อย่างไร


90

My Select2 3.4.5 ไม่ทำงานกับข้อมูล JSON

นี่คือช่องป้อนข้อมูลของฉันใน HTML:

<input class='form-control col-lg-5 itemSearch' type='text' placeholder='select item' />

…และ JavaScript ของฉัน

$(".itemSearch").select2({
    placeholder: "Search for an Item",
    minimumInputLength: 2,
    ajax: {
        url: "/api/productSearch",
        dataType: 'json',
        quietMillis: 100,
        data: function (term, page) {
            return {
                option: term
            };
        },
        results: function (data, page) {
            var more = (page * 10) < data.total;
            return {
                results: data.itemName,
                more: more
            };
        }
    },
    formatResult: function (data, term) {
        return data;
    },
    formatSelection: function (data) {
        return data;
    },
    dropdownCssClass: "bigdrop",
    escapeMarkup: function (m) {
        return m;
    }
});

ฉันสร้าง API ด้วย Laravel 4 ซึ่งจะคืนค่าทุกครั้งที่ฉันพิมพ์อะไรก็ได้ในกล่องข้อความของฉัน

นี่คือผลลัพธ์หากฉันพิมพ์ "test" ในกล่องข้อความของฉัน:

[{"itemName":"Test item no. 1","id":5},
{"itemName":"Test item no. 2","id":6},
{"itemName":"Test item no. 3","id":7},
{"itemName":"Test item no. 4","id":8},
{"itemName":"Test item no. 5","id":9},
{"itemName":"Test item no. 6","id":10},
{"itemName":"Test item no. 7","id":11}]

ฉันไม่สามารถเพิ่มผลลัพธ์ในเมนูแบบเลื่อนลง Select2 ของฉัน ฉันคิดว่าformatSelectionและformatResultกำลังทำให้เกิดปัญหาเพราะฉันไม่รู้ว่าควรวางพารามิเตอร์อะไรไว้ ฉันไม่รู้ว่าจะรับพารามิเตอร์เหล่านั้นได้จากที่ใดเช่นคอนเทนเนอร์ออบเจ็กต์และคิวรีและค่าที่ควรส่งคืนหรือการตอบสนอง JSON ของฉันผิดหรือไม่

คำตอบ:


111

คุณมีตัวอย่างที่นี่

$("#profiles-thread").select2({
    minimumInputLength: 2,
    tags: [],
    ajax: {
        url: URL,
        dataType: 'json',
        type: "GET",
        quietMillis: 50,
        data: function (term) {
            return {
                term: term
            };
        },
        results: function (data) {
            return {
                results: $.map(data, function (item) {
                    return {
                        text: item.completeName,
                        slug: item.slug,
                        id: item.id
                    }
                })
            };
        }
    }
});

มันค่อนข้างง่าย


2
ขอบคุณสำหรับข้อเสนอแนะถึง $
.map

คุณช่วยอธิบายพารามิเตอร์ "slug" ได้ไหม
IcedDante

item เป็นวัตถุที่มีคุณสมบัติ completeName, slug และ id นี่เป็นเพียงตัวอย่างคัดลอกและวาง
Tolo Palmer

2
กระสุนเป็นคุณสมบัติที่แท้จริงของไอเท็มของคุณฉันเพิ่มสิ่งนี้ตามที่คุณเห็นวิธีการเพิ่มพารามิเตอร์พิเศษ)
Tolo Palmer

4
ฉันรับข้อผิดพลาดนี้ jquery.min.js: 2 Uncaught TypeError: ไม่สามารถอ่านคุณสมบัติ 'ความยาว' ของ null เมื่อเซิร์ฟเวอร์ของฉันไม่ส่งคืนผลลัพธ์
Soptareanu Alex

109

สำหรับselect2 v4.0.0แตกต่างกันเล็กน้อย

$(".itemSearch").select2({
    tags: true,
    multiple: true,
    tokenSeparators: [',', ' '],
    minimumInputLength: 2,
    minimumResultsForSearch: 10,
    ajax: {
        url: URL,
        dataType: "json",
        type: "GET",
        data: function (params) {

            var queryParameters = {
                term: params.term
            }
            return queryParameters;
        },
        processResults: function (data) {
            return {
                results: $.map(data, function (item) {
                    return {
                        text: item.tag_value,
                        id: item.tag_id
                    }
                })
            };
        }
    }
});

8
ไม่สามารถใช้งานได้ ... :( ไม่มีการโทรไปยังเซิร์ฟเวอร์
Simanas

มันใช้งานได้ขอบคุณความผิดพลาดที่ฉันทำคือการแมปidและtextคีย์ค่าไม่ถูกต้อง
Ja8zyjits

18

ในเวอร์ชัน 4.0.2 แตกต่างกันเล็กน้อยในprocessResultsและในresult:

    processResults: function (data) {
        return {
            results: $.map(data.items, function (item) {
                return {
                    text: item.tag_value,
                    id: item.tag_id
                }
            })
        };
    }

คุณต้องเพิ่มในdata.items คือชื่อ Json:resultitems

{
  "items": [
    {"id": 1,"name": "Tetris","full_name": "s9xie/hed"},
    {"id": 2,"name": "Tetrisf","full_name": "s9xie/hed"}
  ]
}

1
ถ้าฉันเอาitemsจากdata.itemsฉันจะไม่ต้องเพิ่มitemsแอตทริบิวต์กับการตอบสนองที่ถูกต้อง? ;)
Yana Agun Siswanto

1
@bekicot ใช่คุณเพียงระบุ$.map(data, function (item) ว่า json ของคุณเป็นอาร์เรย์หรือไม่:[ {"id": 1,"text": "One"}, {"id": 2,"text": "Two"} ]
Tantowi Mustofa

2
ฉันทุบหัวกับกำแพงแล้วเรื่องนี้ก็เคลียร์ ขอบคุณเอกสารสำหรับ select2 ขาดอย่างมาก
Neil B.

11

ที่นี่ฉันให้ตัวอย่างของฉันซึ่งประกอบด้วย -> ธงประเทศ, เมือง, รัฐ, ประเทศ

นี่คือผลลัพธ์ของฉัน

ใส่คำอธิบายภาพที่นี่

แนบ Cdn js หรือลิงค์ทั้งสองนี้

<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.10/css/select2.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.10/js/select2.min.js"></script>

สคริปต์ js

//for apend flag of country.

function formatState (state) {
    console.log(state);
    if (!state.id) {
      return state.text;
    }
    var baseUrl = "admin/images/flags";
    var $state = $(
      '<span><img src="'+baseUrl+ '/' + state.contryflage.toLowerCase() + '.png"  class="img-flag" /> ' +state.text+ '</span>'
    );
    return $state;
  };


$(function(){
    $("#itemSearch").select2({
    minimumInputLength: 2,
    templateResult: formatState, //this is for append country flag.
    ajax: {
        url: URL,
        dataType: 'json',
        type: "POST",
        data: function (term) {
            return {
                term: term
            };
        },
        processResults: function (data) {
            return {
                results: $.map(data, function (item) {
                    return {
                        text: item.name+', '+item.state.name+', '+item.state.coutry.name,
                        id: item.id,
                        contryflage:item.state.coutry.sortname
                    }
                })
            };
        }

    }
});

การตอบสนอง JSON ที่คาดไว้

[
   {
      "id":7570,
      "name":"Brussels",
      "state":{
         "name":"Brabant",
         "coutry":{
            "sortname":"BE",
            "name":"Belgium",

         }
      }
   },
   {
      "id":7575,
      "name":"Brussels",
      "state":{
         "name":"Brabant Wallon",
         "coutry":{
            "sortname":"BE",
            "name":"Belgium",

         }
      }
   },
   {
      "id":7578,
      "name":"Brussel",
      "state":{
         "name":"Brussel",
         "coutry":{
            "sortname":"BE",
            "name":"Belgium",

         }
      }
   },

]

แต่ฉันสับสนใน `data: function (term) {return {term: term}; }, `
Vikas Katariya

6

could not load resultsนี่คือวิธีที่ผมแก้ไขปัญหาของฉันฉันได้รับข้อมูลในตัวแปรข้อมูลและโดยใช้โซลูชั่นดังกล่าวข้างต้นที่ผมได้รับข้อผิดพลาด ฉันต้องแยกวิเคราะห์ผลลัพธ์ที่แตกต่างกันใน processResults

searchBar.select2({
            ajax: {
                url: "/search/live/results/",
                dataType: 'json',
                headers : {'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')},
                delay: 250,
                type: 'GET',
                data: function (params) {
                    return {
                        q: params.term, // search term
                    };
                },
                processResults: function (data) {
                    var arr = []
                    $.each(data, function (index, value) {
                        arr.push({
                            id: index,
                            text: value
                        })
                    })
                    return {
                        results: arr
                    };
                },
                cache: true
            },
            escapeMarkup: function (markup) { return markup; },
            minimumInputLength: 1
        });

1

ปัญหาอาจเกิดจากการทำแผนที่ไม่ถูกต้อง แน่ใจหรือว่าคุณตั้งค่าผลลัพธ์ไว้ใน "data" แล้ว ในตัวอย่างของฉันโค้ดแบ็กเอนด์จะแสดงผลลัพธ์ภายใต้คีย์ "items" ดังนั้นการแมปควรมีลักษณะดังนี้:

results: $.map(data.items, function (item) {
....
}

และไม่:

 results: $.map(data, function (item) {
    ....
    }

1

อาแจ็กซ์ของฉันไม่เคยถูกไล่ออกจนกว่าฉันจะปิดทุกอย่าง

setTimeout(function(){ .... }, 3000);

ฉันใช้มันในส่วนเมาท์ของ Vue ต้องใช้เวลามากขึ้น


0

หากคำขอ ajax ไม่เริ่มทำงานโปรดตรวจสอบคลาส select2 ในองค์ประกอบที่เลือก การลบคลาส select2 จะแก้ไขปัญหานั้นได้

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.