如何更改从ajax

时间:2016-02-26 20:02:53

标签: javascript jquery ajax playframework select2

我正在尝试制作一个编辑表单。此表单必须加载来自数据库的数据,并显示数据来自数据库。在我的表单中,我有一个select2组合框,通过ajax加载项目。我需要使用来自数据库的id值更改此组合框的选定索引。我用来加载数据的代码是:

function populateState(){


var urlCities='@routes.StateCtrl.lstStatesByCountryToSelect()';
$("#idCountry").select2({
    placeholder: "Select country...",
    ajax: {
    url: urlCities,
    dataType: 'json',
    type: 'GET',
        data: function(term,page){
                return{q:term,idCountry:$("#idCountry").val()};
                },
        results: function(data, page) {
            return {
                results: data.results
            };
        }
    }
});

}

我正在尝试这个,但它不起作用:

$("#idCountry").select2().select2("val", id);

例如,如果我在页面加载时在组合框(德克萨斯州,纽约州,佛罗里达州)中加载三个状态,我想在组合框中显示德克萨斯州作为初始选定项目。

1 个答案:

答案 0 :(得分:0)

$("#idCountry").val("desired_value").trigger("change");

更多信息可以在弃用和删除的方法中找到: https://select2.org/upgrading/migrating-from-35