electron/docs-translations/zh-TW/api/structures/cookie.md
DaLun 7c48dd54e1 ZH_TW docs api/structures/cookie add (#7793)
* Update cookie.md

* Update cookie.md

* Update task.md

* ZH_TW docs /structures/cookie add

* Fix a word && add new docs

* Update task.md

* Update cookie.md
2016-10-31 09:21:43 -07:00

11 lines
595 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Cookie 物件
* `name` 字串 - cookie 的名字。
* `value` 字串 - cookie 的值。
* `domain` 字串 - cookie 的域名。
* `hostOnly` 字串 - cookie 是否為 Host-Only.。
* `path` 字串 - cookie 的路徑。
* `secure` 布林 - cookie 的網域是否安全 https)。
* `httpOnly` 布林 - cookie 是否只能運行在 HTTP。
* `session` 布林 - cookie 為 短期 session 或者 長期 cookie若是長期 cookie 得包含一個截止日期。
* `expirationDate` 雙精度浮點數 (可選) - cookie 的截止日期,當 `session` 設定為 時可用,值為 UNIX時間。