Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为用户提供字段的公共和私有选项。假设,我想将“出生日期”字段设为私有,它不应该出现在其他用户的详细信息页面上。
我在设计中有我定制的注册控制器。字段正在保存、更新和显示,但我不知道如何为其他用户隐藏私有字段。我真的很困惑如何开始????
如果您有一个方法,例如current_user(当前登录的用户,如果您使用例如设计),那么您可以执行类似的操作
current_user
<%= @user.birth_date if @user == current_user %>