如何从下拉列表中显示确切的值?

How to display exact value from drop down?

我已经通过 select2 配置了我的 select,一切正常。

我使用带有 formatState 方法的 templateResult 将图标添加到我的下拉选项中。

$(".js-country-list").select2({
  templateResult: formatState
});

然而,这不会将任何内容更改为 selected 值(见下图)。

我如何确保 selected 值(在我的例子中是 EUR)显示与选项完全相同:欧元 (EUR)?

谢谢。

https://select2.org/selections 中描述的 templateSelection 方法可用于实现此目的,它可以传递与 templateResult 使用的相同功能。

$(".js-country-list").select2({
  templateResult: formatState,
  templateSelection: formatState
});

示例列表国家及其旗帜(非货币)包含在下面。

// Template function which adds CSS flag and displays country name
function flagTemplate(country){
  return $("<span class='flag-icon flag-icon-" + country.id + " '></span><span class='flag-text'>" + country.text + "</span>");
}

// Generate correct URL based on entered search term
function generateUrl(params){
  if(params.term){
    return "https://restcountries.com/v3.1/name/" + params.term;
  } else {
    return "https://restcountries.com/v3.1/all";
  }
}

// Initialise select2 using flagTemplate function for both result and selection
$('#countrySelect').select2({
  // Set template for results and selection
  templateResult: flagTemplate,
  templateSelection: flagTemplate,
  // Set placeholder text
  placeholder: 'Select country...',
  // Load country list from https://restcountries.com
  ajax: {
    url: generateUrl,
    cache: 250,
    dataType: "json",
    processResults: function(data) {      
      return {
        results: data
          .map(x => ({id: x.cca2.toLowerCase(), text: x.name.common}))
          .sort((a, b) => ('' + a.text).localeCompare(b.text))
      };
    }
  }
});
#countrySelect {
  width: 300px;
}

.flag-text {
  margin-left: 10px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>

<!-- Load flags using library https://github.com/lipis/flag-icons  -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/4.1.5/css/flag-icons.min.css" rel="stylesheet"/>

<select id="countrySelect"><option></option></select>