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:
commit
6062ff2748
@ -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": {
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user