This commit is contained in:
deepak1556 2016-10-12 23:35:35 +05:30 коммит произвёл Kevin Sawicki
Родитель ad5f944185
Коммит dbe57c4ad4
6 изменённых файлов: 28 добавлений и 72 удалений

Просмотреть файл

@ -966,32 +966,10 @@ Same as `webContents.capturePage([rect, ]callback)`.
* `url` String
* `options` Object (optional)
* `httpReferrer` String (optional) - A HTTP Referrer url.
* `userAgent` String (optional) - A user agent originating the request.
* `extraHeaders` String (optional) - Extra headers separated by "\n"
* `postData` Array (optional) - An array of `upload` objects which
provides the request body for `POST` navigation.
* `upload` Object
* `type` String - `data`, `file`, `filsSystem`, `blob`.
If `type` is `data` then `upload` object must contain:
* `bytes` Buffer - Raw data to be uploaded.
If `type` is `file` then `upload` object must contain:
* `filePath` String - Path of file to be uploaded.
* `offset` Integer
* `length` Integer
* `modificationTime` Double
If `type` is `fileSystem` then `upload` object must contain:
* `filsSystemURL` String - FileSystem url to read data for upload.
* `offset` Integer
* `length` Integer
* `modificationTime` Double
If `type` is `blob` then `upload` object must contain:
* `blobUUID` String - UUID of blob data to upload.
* `httpReferrer` String - A HTTP Referrer url.
* `userAgent` String - A user agent originating the request.
* `extraHeaders` String - Extra headers separated by "\n"
* `postData` ([UploadData](structures/upload-data.md) | [UploadFile](structures/upload-file.md) | [UploadFileSystem](structures/upload-file-system.md) | [UploadBlob](structures/upload-blob.md))[]
Same as `webContents.loadURL(url[, options])`.

Просмотреть файл

@ -0,0 +1,4 @@
# Upload blob Object
* `type` String - `blob`.
* `blobUUID` String - UUID of blob data to upload.

Просмотреть файл

@ -0,0 +1,9 @@
# Upload fileSystem Object
* `type` String - `fileSystem`.
* `filsSystemURL` String - FileSystem url to read data for upload.
* `offset` Integer - Defaults to `0`.
* `length` Integer - Number of bytes to read from `offset`.
Defaults to `0`.
* `modificationTime` Double - Last Modification time in
number of seconds sine the UNIX epoch.

Просмотреть файл

@ -0,0 +1,9 @@
# Upload file Object
* `type` String - `file`.
* `filePath` String - Path of file to be uploaded.
* `offset` Integer - Defaults to `0`.
* `length` Integer - Number of bytes to read from `offset`.
Defaults to `0`.
* `modificationTime` Double - Last Modification time in
number of seconds sine the UNIX epoch.

Просмотреть файл

@ -490,29 +490,7 @@ win.loadURL('http://github.com')
* `httpReferrer` String - A HTTP Referrer url.
* `userAgent` String - A user agent originating the request.
* `extraHeaders` String - Extra headers separated by "\n"
* `postData` Array - An array of `upload` objects which
provides the request body for `POST` navigation.
* `upload` Object
* `type` String - `data`, `file`, `filsSystem`, `blob`.
If `type` is `data` then `upload` object must contain:
* `bytes` Buffer - Raw data to be uploaded.
If `type` is `file` then `upload` object must contain:
* `filePath` String - Path of file to be uploaded.
* `offset` Integer
* `length` Integer
* `modificationTime` Double
If `type` is `fileSystem` then `upload` object must contain:
* `filsSystemURL` String - FileSystem url to read data for upload.
* `offset` Integer
* `length` Integer
* `modificationTime` Double
If `type` is `blob` then `upload` object must contain:
* `blobUUID` String - UUID of blob data to upload.
* `postData` ([UploadData](structures/upload-data.md) | [UploadFile](structures/upload-file.md) | [UploadFileSystem](structures/upload-file-system.md) | [UploadBlob](structures/upload-blob.md))[]
Loads the `url` in the window. The `url` must contain the protocol prefix,
e.g. the `http://` or `file://`. If the load should bypass http cache then

Просмотреть файл

@ -265,29 +265,7 @@ webview.addEventListener('dom-ready', () => {
* `httpReferrer` String - A HTTP Referrer url.
* `userAgent` String - A user agent originating the request.
* `extraHeaders` String - Extra headers separated by "\n"
* `postData` Array - An array of `upload` objects which
provides the request body for `POST` navigation.
* `upload` Object
* `type` String - `data`, `file`, `filsSystem`, `blob`.
If `type` is `data` then `upload` object must contain:
* `bytes` Buffer - Raw data to be uploaded.
If `type` is `file` then `upload` object must contain:
* `filePath` String - Path of file to be uploaded.
* `offset` Integer
* `length` Integer
* `modificationTime` Double
If `type` is `fileSystem` then `upload` object must contain:
* `filsSystemURL` String - FileSystem url to read data for upload.
* `offset` Integer
* `length` Integer
* `modificationTime` Double
If `type` is `blob` then `upload` object must contain:
* `blobUUID` String - UUID of blob data to upload.
* `postData` ([UploadData](structures/upload-data.md) | [UploadFile](structures/upload-file.md) | [UploadFileSystem](structures/upload-file-system.md) | [UploadBlob](structures/upload-blob.md))[]
Loads the `url` in the webview, the `url` must contain the protocol prefix,
e.g. the `http://` or `file://`.