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.
我正在使用rails3。我有一个要求,例如当我在浏览器上从 rails 控制台创建用户时,如果我打开名称打开的用户用户,我会收到类似用户创建的通知。
我怎么得到这个。请给我任何想法。
提前致谢,回复非常可观
你可以在你的用户模型中有一个布尔列,比如:“already_seen?”
当您在视图中打开用户时,您可以执行
<% unless @user.already_seen? %> This user has been created recently <% @user.update_attribute(already_seen?: true) %> <% end %>