如何使用select2自动填充另一个输入字段

时间:2018-08-09 15:55:52

标签: ajax jquery-select2 medoo

请提供帮助,如何使用medoo Framework数据库自动填充ajax + select2以自动填充相同格式的另一个输入。 这是我的Ajax代码:

$('.matrix').select2({
    ajax: {
        url: "index.php",
        dataType: 'json',
        data: function (params,page) {
            return {
                q: params.term, // search term
                qa: 'matrix'
            };
        },
        processResults: function (data,params) {
            return {
                results: $.map(data, function(obj) {
                    return { id: obj.id, text: obj.text };
                })
            };
        },
        //cache: true,
    },
    minimumInputLength: 3,
    placeholder: "<?php _e('Please Select'); ?>",
});

请提出您的建议。

1 个答案:

答案 0 :(得分:0)

这是我的搜索数据:

case "matrix":
    $searchstring = "";
    if(isset($_GET['q'])) $searchstring = $_GET['q'];

    if($searchstring != "") {
        $items = $database->select("tbl_matrix", "*", [ "OR" => [
            "bc_name[~]" => $searchstring

        ]]);

    } else {
        $items = $database->select("tbl_matrix", "*");
    }

    $results = array();
    $results[0]['id'] = 0;
    $results[0]['text'] = __('None');


    $i = 1;
    foreach($items as $item) {
        $results[$i]['id'] = $item['id'];
        $results[$i]['text'] = $item['bc_code']." ".$item['bc_name'];
        $i++;
    }

    echo json_encode($results);
    break;