Meteor autoform select2 パッケージを使用していますが、選択した値を設定する方法を見つけようとしています。現在、次のことを試していますが、残りの国のリストが表示されません
options: function () {
var user = Meteor.users.findOne();
if (user && !_.isEmpty(user.profile.country)) {
return {value: user.profile.country};
}
return countriesList;
}