如何将过期添加到 flutter web cookie?

How to add expires to flutter web cookie?

我正在使用 document.cookie 在我的网络应用程序中存储 cookie。我想添加 'expires' 参数并设置 30 天后过期。 我该怎么做。

  void _addToCookie(String key, String value) {
    document.cookie = "$key=$value;expires=30";
  }

使用 "max-age" 参数代替 "expires"。 "max-age" 需要秒数;max-age=max-age-in-seconds(例如,60*60*24*365 或 31536000 表示一年)

30天30×24×60×60 = 2592000.

 void _addToCookie(String key, String value) {
    document.cookie = "$key=$value; max-age=2592000;";
  }