尝试从 Intel Galileo 上的 javascript 程序向我的 Labtop 上的节点红色服务器 运行 发送消息
Trying to send a message from javascript program on Intel Galileo to a node-red server running on my Labtop
下面是我的javascript程序。
var nobel = require('nobel)'
var http = require('http');
var options = {
host: '111.111.111.111',
path: '/myTest'
port: 1880,
method: 'POST'
}
callback = function (response) {
var str = '';
response.on('data', function(chunk) {
str += chunk;
});
}
var req = http.request(options,callback);
req.write('helloWorld');
req.end();
下面是我在 nodeRed 上的流的 http 输入节点,在我的笔记本电脑上是 运行。
我笔记本电脑的ip地址是111.111.111.111
Galileo芯片的ip地址为222.222.222.222
您需要在 Http In 节点
中以前导 '/' 开始 URL
下面是我的javascript程序。
var nobel = require('nobel)'
var http = require('http');
var options = {
host: '111.111.111.111',
path: '/myTest'
port: 1880,
method: 'POST'
}
callback = function (response) {
var str = '';
response.on('data', function(chunk) {
str += chunk;
});
}
var req = http.request(options,callback);
req.write('helloWorld');
req.end();
下面是我在 nodeRed 上的流的 http 输入节点,在我的笔记本电脑上是 运行。
我笔记本电脑的ip地址是111.111.111.111 Galileo芯片的ip地址为222.222.222.222
您需要在 Http In 节点
中以前导 '/' 开始 URL