mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix HTTTP Request url template
This commit is contained in:
parent
eee8f89146
commit
729036ec0b
@ -138,6 +138,7 @@ function HTTPRequest(n) {
|
|||||||
var node = this;
|
var node = this;
|
||||||
var credentials = RED.nodes.getCredentials(n.id);
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
this.on("input",function(msg) {
|
this.on("input",function(msg) {
|
||||||
|
var url;
|
||||||
if (msg.url) {
|
if (msg.url) {
|
||||||
url = msg.url;
|
url = msg.url;
|
||||||
} else if (isTemplatedUrl) {
|
} else if (isTemplatedUrl) {
|
||||||
@ -145,7 +146,6 @@ function HTTPRequest(n) {
|
|||||||
} else {
|
} else {
|
||||||
url = nodeUrl;
|
url = nodeUrl;
|
||||||
}
|
}
|
||||||
var url = msg.url||nodeUrl;
|
|
||||||
var method = (msg.method||nodeMethod).toUpperCase();
|
var method = (msg.method||nodeMethod).toUpperCase();
|
||||||
var opts = urllib.parse(url);
|
var opts = urllib.parse(url);
|
||||||
opts.method = method;
|
opts.method = method;
|
||||||
|
Loading…
Reference in New Issue
Block a user