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
This commit is contained in:
parent
5968346c1e
commit
7c48dd54e1
2 changed files with 19 additions and 0 deletions
11
docs-translations/zh-TW/api/structures/cookie.md
Normal file
11
docs-translations/zh-TW/api/structures/cookie.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# 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時間。
|
8
docs-translations/zh-TW/api/structures/task.md
Normal file
8
docs-translations/zh-TW/api/structures/task.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Task 物件
|
||||||
|
|
||||||
|
* `program` 字串 - 程式執行的路徑,通常你應該指定 `process.execPath`,此值為當前程式執行的路徑。
|
||||||
|
* `arguments` 字串 - `program` 在命令列下執行的附加參數。
|
||||||
|
* `title` 字串 - JumpList 內顯示的標題。
|
||||||
|
* `description` 字串 - 關於此物件的描述。
|
||||||
|
* `iconPath` 字串 - 此物件的 icon 路徑,被顯示在 JumpList 中,通常你可以指定 `process.execPath`去顯示當前物件的 icon 。
|
||||||
|
* `iconIndex` 數字 - icon 的索引,如果一個檔案包由兩個或以上的的 icon, 設定此值去指定 icon, 如果檔案內只有一個 icon, 此值為 0 。
|
Loading…
Reference in a new issue