我使用select2
代替搜索框。在select2多選中加載值
這裏我使用的加載這樣
$("#countries").select2({
multiple: true,
tags:["India", "Japan", "Australia","Singapore"],
tokenSeparators: [","]
});
當我按下保存按鈕,它們被正確地提交到服務器,現在這裏的問題是,當 我想修改該國領域的國家價值觀保存到服務器後,我如何將保存的值加載到國家字段。
這是我從服務器獲取數據
$.getJSON('/dataprovider?data=fetchCountriesForm', function(opts) {
//the opts here contains the json values of the countries.
//what code should be written here to load the values in $('#countries).select2();
//user can add some more countries or can remove the previously added countries.
}
我知道這是古老的,所以原諒我,但這似乎不適用於2維數組?我可以加載諸如('dog','cat','mouse')但不是('1':'Dog','2':'Cat','3':'Mouse')的值。你能做到嗎? – SBB