gpt4 book ai didi

javascript - 具有 Angular 色的帐户 MeteorJS

转载 作者:行者123 更新时间:2023-11-28 00:24:28 24 4
gpt4 key购买 nike

我正在使用alanning-roles包和 Meteor.method 来创建具有 Angular 色的帐户,但创建的帐户没有任何 Angular 色。

浏览器控制台抛出内部505错误,服务器控制台抛出无效的createUser方法。

这是我的方法。

Meteor.methods({
createUser:function(password,email,username){ //Normal Account
var rol = "Normal",
account = Accounts.createUser({
email:email,
password:password,
username:username
});
console.log(account) //returns id wich i need to add the user to the rol
Roles.addUsersToRoles(account, rol);
return account;
}
})

并像在事件处理程序上那样调用它。

Meteor.call('createUser',"example123","example@gmail.com","example",function(error,account){
if(error){
console.log(error.reason)
}else{
console.log("user created")
}
})

最佳答案

Internal 505 error //this means something get wrong on the server, so the Meteor.call is ok.

服务器方法也可以,但是你需要将 rol 包装在一个数组中,就像这样。

var rol = ["Normal"]

Angular 色字段类似于 Accounts-Package 上的电子邮件字段。

关于javascript - 具有 Angular 色的帐户 MeteorJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29683474/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com