new BrowserCookie()
브라우져(document) 쿠키
- Implements:
- Source:
Methods
decode(value) → {string}
쿠키에 꺼내는 값 decode
Parameters:
Name | Type | Description |
---|---|---|
value |
string |
Returns:
- Type
- string
delete(name, pathopt, domainopt)
쿠키 중 일치하는 값 제거
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
name |
string | ||
path |
string |
<optional> |
|
domain |
string |
<optional> |
deleteAll(pathopt, domainopt)
일치하는 모든 쿠키 제거
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
path |
string |
<optional> |
|
domain |
string |
<optional> |
encode(value) → {string}
쿠키에 넣을 값 encode
Parameters:
Name | Type | Description |
---|---|---|
value |
string |
Returns:
- Type
- string
get(name) → {string}
쿠키 중 name 에 해당하는 값 반환
Parameters:
Name | Type | Description |
---|---|---|
name |
string |
Returns:
- Type
- string
getAll() → {IndexableValue}
모든 쿠키값을 key&value 로 반환
Returns:
- Type
- IndexableValue
getCookies() → {string}
document 쿠키 값 반환
Returns:
- Type
- string
has(name) → {boolean}
쿠키 중 name 에 해당하는 값이 있는지 여부
Parameters:
Name | Type | Description |
---|---|---|
name |
string |
Returns:
- Type
- boolean
set(options) → {void}
쿠키에 값 넣기
Parameters:
Name | Type | Description |
---|---|---|
options |
ICookieSet |
Returns:
- Type
- void
setCookies(cookie)
document 에 쿠키 값 지정
Parameters:
Name | Type | Description |
---|---|---|
cookie |
string | any |