Skip to content

getCookie

传入字符串,获取指定名字的 cookie 的值

API

Return

参数说明类型
sting返回的一个指定名称的 cookie 的值string

Options

参数说明类型默认值
name指定获取 cookie 的名称的值object

Example

js
import { getCookie } from 'ranuts';

const result = getCookie('name');

console.log(result);

// ''

Released under the MIT License.