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 @@

File Upload

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には適切な価を設定してください。