SameSitefinal

Cookie 跨站可用性配置。

Cookie.sameSite 的值,该值定义了 HTTP Cookie 是否可以从其他站点获取。

有三个可能的值:laxstrictnone

属性

hashCode int
此对象的哈希码。
无设置器继承
name String
final
runtimeType Type
对象的运行时类型表示。
无设置器继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
继承
toString() String
此对象的字符串表示。
重写

运算符

operator ==(Object other) bool
等于运算符。
继承

常量

lax → const SameSite
默认值,具有此值的 Cookie 通常不会在跨站请求中发送,除非用户被导航到原始站点。
none → const SameSite
具有此值的 Cookie 将在所有请求中发送。
strict → const SameSite
具有此值的 Cookie 永远不会在跨站请求中发送。
values → const List<SameSite>