From 008b26f329ed4e47cbc45e15aad7393e3956a70a Mon Sep 17 00:00:00 2001 From: Hiroyasu Nishiyama Date: Thu, 7 Mar 2019 10:04:06 +0900 Subject: [PATCH 1/2] update JP info text of httprequest node --- .../@node-red/nodes/locales/ja/io/21-httprequest.html | 11 +++++++++++ 1 file changed, 11 insertions(+) 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には適切な価を設定してください。

From 7074d66f8e59598bb0e0c74fe39f7db099b5b612 Mon Sep 17 00:00:00 2001 From: Hiroyasu Nishiyama Date: Thu, 7 Mar 2019 10:06:57 +0900 Subject: [PATCH 2/2] fix unmatched tag in English info text of httprequest node --- .../@node-red/nodes/locales/en-US/io/21-httprequest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": {