0

我正在使用 Meteor autoform select2 包,我试图弄清楚如何设置选定的值。目前正在尝试以下但我看不到其他国家/地区列表

options: function () {
    var user = Meteor.users.findOne();
    if (user && !_.isEmpty(user.profile.country)) {
        return {value: user.profile.country};
    }

    return countriesList;
}
4

1 回答 1

0

您应该始终返回标签和值来选择选项

 return { 
         value: user.profile.country , 
         label:"//someName " 
       }
于 2016-04-03T10:56:49.733 回答