我使用 jQuery select2 插件来使用提供的 ajax 回调函数检索邮政编码,如下所示:
$(document).ready(function() {
$("#postcodes").select2({
placeholder : "Search for a postcode",
multiple : true,
minimumInputLength : 3,
ajax : {
url : "/bignibou/utils/findGeolocationPostcodeByPostcodeStartingWith.json",
dataType : 'json',
data : function(term) {
return {
postcode : term
};
},
results : function(data) {
console.log(data);
return {
results : $.map(data, function(item) {
return {
id : item.id,
text : item.postcode
};
})
};
}
}
});
});
一旦选择了两个邮政编码,我就会hidden input
在 DOM 中得到结果:
<input type="hidden" class="bigdrop select2-offscreen" id="postcodes" style="width:600px" name="familyAdvertisement.postcodes" value="4797,4798" tabindex="-1">
我遇到的问题是,一旦重新显示表单(例如,在某些其他控件出错的情况下),选择(即两个邮政编码,尤其是text
)不会显示在表单中,尽管hidden input
确实有两个值(即 4797 和 4798,它们是id
邮政编码的 s)。
我不确定在重新显示表单时是否必须进行另一次 ajax 往返,或者是否有更好的方法。
有人可以请教吗?