Rails Devise 用户帮助

发布于 2024-12-07 06:23:37 字数 87 浏览 1 评论 0原文

在设计中,我将如何(我不知道如何表达它)返回用户。 我可以 user_signed_in 吗?但用户呢? 我想检查显示 @user 是否与当前登录的用户相同。

In devise how would I, I am not sure how to phrase it, return a user.
I am able to user_signed_in? but what about user.
I want to check in show if @user is the same one as the user that is currently signed in.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

万人眼中万个我 2024-12-14 06:23:37

Devise 具有诸如 current_user 之类的方法,它返回已登录的“用户”。

此外,根据您的“用户”模型,辅助方法将进行相应调整。因此,如果您的设备模型有一个 Admin 类,则可以使用 current_admin 等内容。

Devise has methods like current_user which returns the "user" that is logged in.

Also, depending on your "User" model the helper methods will be adjust accordingly. So if you have an Admin class that is your devise model, you can use something like current_admin, and so on.

送舟行 2024-12-14 06:23:37

Devise 有一个可用的 current_user 帮助程序。

Devise has a current_user helper that's available.

倾城°AllureLove 2024-12-14 06:23:37

你可以这样做:

def show
  @user = User.find(params[:id])
  if @user == current_user
    # something
  end
end

但也许你只是想这样做?

class UsersController < ApplicationController
  before_filter :authenticate_user!
  def show
    @user = User.find(params[:id])
  end
end

You could do this:

def show
  @user = User.find(params[:id])
  if @user == current_user
    # something
  end
end

But maybe you just want to do this?

class UsersController < ApplicationController
  before_filter :authenticate_user!
  def show
    @user = User.find(params[:id])
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文