Teal TealUI

Cookie 处理web/cookie

提供 Cookie 增删功能。

另参考

API

函数 描述
getCookie(name)(name:string):string

获取指定的 Cookie 值。

参数 类型 描述 默认值
name* string

返回值

类型:string

返回 Cookie 值。如果 Cookie 不存在则返回 null。

示例

getCookie("sample") // 如果不存在则返回 null。

获取指定的 Cookie 值。

setCookie(name, value, ...)(name:string, value:string, expires?:number, path?:string, domain?:string, secure?:string):void

设置或删除指定的 Cookie 值。

参数 类型 描述 默认值
name* string
value* string
expires number 365 * 24 * 60 * 60 * 10
path string
domain string
secure string

返回值

类型:void

示例

setCookie("sample", "the value") // 设置 Cookie
setCookie("sample", null) // 删除 Cookie

设置或删除指定的 Cookie 值。