diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/io/21-httprequest.html b/packages/node_modules/@node-red/nodes/locales/en-US/io/21-httprequest.html index bbe66e07b..703ab3ff0 100644 --- a/packages/node_modules/@node-red/nodes/locales/en-US/io/21-httprequest.html +++ b/packages/node_modules/@node-red/nodes/locales/en-US/io/21-httprequest.html @@ -81,7 +81,7 @@
To perform a file upload, msg.headers["content-type"]
should be set to multipart/form-data
and the msg.payload
passed to the node must be an object with the following structure:
{ +{ "KEY": { "value": FILE_CONTENTS, "options": { diff --git a/packages/node_modules/@node-red/nodes/locales/ja/io/21-httprequest.html b/packages/node_modules/@node-red/nodes/locales/ja/io/21-httprequest.html index e2ec2b824..a8b41b02d 100644 --- a/packages/node_modules/@node-red/nodes/locales/ja/io/21-httprequest.html +++ b/packages/node_modules/@node-red/nodes/locales/ja/io/21-httprequest.html @@ -60,5 +60,16 @@
要素タイプの扱い
msg.payload
がオブジェクトの場合、リクエストの要素タイプをmsg.payload
に自動的に設定し、ボディーをJSONに変換します。リクエストをフォームデータにエンコードするには、
+msg.headers["content-type"]
をapplication/x-www-form-urlencoded
に設定します。ファイルのアップロード
++
msg.headers["content-type"]
にmultipart/form-data
を指定するとファイルをアップロードできます。この際、ノードのmsg.payload
に渡されるデータは以下の構造を持ったオブジェクトとします:+{ + "KEY": { + "value": FILE_CONTENTS, + "options": { + "filename": "FILENAME" + } + } +}
KEY
,FILE_CONTENTS
およびFILENAME
には適切な価を設定してください。