如何删除 Kohana 3 中的所有用户角色
我正在使用 ORM Auth 模块,但很难弄清楚如何做到这一点。我尝试过这种情况:
$user = ORM::factory('user', $id); $user->roles->delete_all();
并收到错误 ErrorException [ Fatal Error ]: Call to undefined method Database_Query_Builder_Delete::join()
但是 $user->roles->find_all();
给了我我想要的东西。
I'm using ORM Auth module and it's difficult to figure out how to do it. I've tried this case:
$user = ORM::factory('user', $id); $user->roles->delete_all();
And got error ErrorException [ Fatal Error ]: Call to undefined method Database_Query_Builder_Delete::join()
However $user->roles->find_all();
gives me exactly what i want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据Kohana_ORM类的3.1.3.1版本代码,ORM方法“remove($alias, $far_keys=NULL)”如果不传递第二个参数,它将销毁所有相关条目。
According to version 3.1.3.1 code for Kohana_ORM class, the ORM method "remove($alias, $far_keys=NULL)" if you do not pass the second parameter, it will destroy all related entries.
您想要做的不是从数据库中删除角色,而是删除用户模型和角色模型之间的关系。您可以使用ORM remove()方法。
Instead of deleting roles from the database, what you want to do is remove the relationships between the user model and the roles model. You can use the ORM remove() method.
只需为此功能创建一个票据即可。您可以使用建议的代码。
Just create a ticket for this feature. You can use a code suggested.