我对Meteor相当新,并且在这个问题上遇到了麻烦。
我希望有一个select元素可以更新用户角色(登录后),具体取决于所选的选项。我在选择更改时将选项的值存储为变量,并尝试将此值作为要添加给用户的角色的名称。
当我运行我的应用程序并更改选择时,角色似乎会弹出一秒钟(在蒙古语中查看),然后再次消失。我创建了一个小测试来显示用户角色的警报,该警告显示包含角色的名称,但是一旦你没事,角色就消失了。我在这里错过了什么吗?
这是我的模板,其中包含select元素...
<template name="select">
<select id="select">
<option value="working">Looking for work</option>
<option value="hiring">Hiring</option>
</select>
</template>
这是更改事件的客户端代码
Template.select.events({
'change #select': function (event) {
//remove any current roles added to the user as it will be either
//one or the other
Roles.removeUsersFromRoles( Meteor.userId(), 'working', 'hiring' );
//add a role to the current user with the value from select box
var value = $(event.target).val();
Roles.addUsersToRoles( Meteor.user(), value );
//each of these alerts displays correctly depending on the select
//value
var test = Roles.userIsInRole( Meteor.user(), 'hiring' ); // true
if (test===true){
alert('in hiring role');
}
var test2 = Roles.userIsInRole( Meteor.user(), 'working' ); // true
if (test2===true){
alert('in working role');
}
// either working or hiring
alert(Roles.getRolesForUser(Meteor.userId()));
// alert displays count of 1 when you select 'hiring'
alert(Roles.getUsersInRole('hiring').count());
}
});
任何帮助将不胜感激,一直在搜索文档和在线几天无济于事。非常感谢:)
答案 0 :(得分:0)
您尝试在客户端中添加角色。但是,客户端仅反映来自服务器Roles
集合的数据。
因此,您需要将代码更改为服务器端方法,
a)检查是否允许当前用户更改角色(此处警告,未检查权限时可能存在安全威胁)
b)检查,目标用户是否存在
c)设置给定userId
如何做到a good example in the documentation。这是它的略微修改版本:
Meteor.methods({
'updateRoles'({userId, roles, group}) {
check(userId, String);
check(roles, [String]);
check(group, String);
// a) check permission
if (!this.userId || !Meteor.users.findOne(this.userId) || !Roles.userIsInRole(this.userId, 'update-roles', 'lifted-users'))
throw new Meteor.Error('403', 'forbidden', 'you have no permission to change roles');
// b) check target user
if (!Meteor.users.findOne(userId))
throw new Meteor.Error('404', 'user not found');
// c) update user's roles
Roles.setUserRoles(userId, roles, group);
return true;
}
});
此方法假定用户有一个特殊的角色/组合组合,允许更改角色。这应该只是很少的人,比如管理员。
另请注意,此方法使用Roles.setUserRoles
设置用户角色。如果您想扩展角色,则需要使用Roles.addUserToRoles
。
然后,您可以像每个Meteor方法一样从客户端调用此方法:
Template.select.events({
'change #select': function (event) {
// get value from select box
var roles = [$(event.target).val()];
// TODO create a second select for the group
var group = 'defaultUsers'
var userId = Meteor.userId();
Meteor.call('updateRoles', { userId, roles, group }, (err, res) => {
// handle err / res
console.log(Roles.userIsInRole(userId, roles, group)); // should return true
});
}
});
请注意,客户端上的Roles
是一个立即订阅的集合。变化被反映出来。如果您没有立即看到更改