如何在轨道上缓存按钮单击?

时间:2016-06-07 12:39:57

标签: ruby-on-rails

我想在用户点击某个按钮时保存在本地缓存中。基本上会显示一条消息,用户单击按钮不再显示该消息。我认为实现这一目标的最佳方法是保存用户单击本地缓存中的按钮。我该怎么做呢?如果您有更好的方法来实现此功能,请告诉我。

1 个答案:

答案 0 :(得分:1)

如果您正在谈论javascript,请尝试使用localStorage

if (localStorage.getItem('user_clicked') === null) {
  alert('message');
  localStorage.setItem('user_clicked', true);
}