1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #2080 from node-red-hitachi/update-JP-info-httprequest

Update info text of httprequest node
This commit is contained in:
Nick O'Leary 2019-03-07 10:02:09 +00:00 committed by GitHub
commit 6062ff2748
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -81,7 +81,7 @@
<h4>File Upload</h4> <h4>File Upload</h4>
<p>To perform a file upload, <code>msg.headers["content-type"]</code> should be set to <code>multipart/form-data</code> <p>To perform a file upload, <code>msg.headers["content-type"]</code> should be set to <code>multipart/form-data</code>
and the <code>msg.payload</code> passed to the node must be an object with the following structure:</p> and the <code>msg.payload</code> passed to the node must be an object with the following structure:</p>
<pre>{ <pre><code>{
"KEY": { "KEY": {
"value": FILE_CONTENTS, "value": FILE_CONTENTS,
"options": { "options": {

View File

@ -60,5 +60,16 @@
<h4>要素タイプの扱い</h4> <h4>要素タイプの扱い</h4>
<p><code>msg.payload</code>がオブジェクトの場合、リクエストの要素タイプを<code>msg.payload</code>に自動的に設定し、ボディーをJSONに変換します。</p> <p><code>msg.payload</code>がオブジェクトの場合、リクエストの要素タイプを<code>msg.payload</code>に自動的に設定し、ボディーをJSONに変換します。</p>
<p>リクエストをフォームデータにエンコードするには、<code>msg.headers["content-type"]</code><code>application/x-www-form-urlencoded</code>に設定します。</p> <p>リクエストをフォームデータにエンコードするには、<code>msg.headers["content-type"]</code><code>application/x-www-form-urlencoded</code>に設定します。</p>
<h4>ファイルのアップロード</h4>
<p><code>msg.headers["content-type"]</code><code>multipart/form-data</code>を指定するとファイルをアップロードできます。この際、ノードの<code>msg.payload</code>に渡されるデータは以下の構造を持ったオブジェクトとします:</p>
<pre><code>{
"KEY": {
"value": FILE_CONTENTS,
"options": {
"filename": "FILENAME"
}
}
}</code></pre>
<p><code>KEY</code>, <code>FILE_CONTENTS</code> および <code>FILENAME</code>には適切な価を設定してください。</p>
</script> </script>