我正在使用 Meteor autoform select2 包,我试图弄清楚如何设置选定的值。目前正在尝试以下但我看不到其他国家/地区列表
options: function () {
var user = Meteor.users.findOne();
if (user && !_.isEmpty(user.profile.country)) {
return {value: user.profile.country};
}
return countriesList;
}