如何删除 Kohana 3 中的所有用户角色

发布于 2024-09-12 10:23:48 字数 320 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

请帮我爱他 2024-09-19 10:23:48

根据Kohana_ORM类的3.1.3.1版本代码,ORM方法“remove($alias, $far_keys=NULL)”如果不传递第二个参数,它将销毁所有相关条目。

$user->remove('roles');

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.

$user->remove('roles');
锦上情书 2024-09-19 10:23:48

您想要做的不是从数据库中删除角色,而是删除用户模型和角色模型之间的关系。您可以使用ORM remove()方法

foreach ($user->roles->find_all() as $role)
{
    $user->remove('roles', $role);
}

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.

foreach ($user->roles->find_all() as $role)
{
    $user->remove('roles', $role);
}
半葬歌 2024-09-19 10:23:48

只需为此功能创建一个票据即可。您可以使用建议的代码。

Just create a ticket for this feature. You can use a code suggested.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文