Websocket服务器:TypeError ws.send()不是函数

时间:2019-01-24 13:59:14

标签: javascript node.js websocket serial-port

我开始使用Node js。到目前为止,一切都很好。直到今天。 我正在玩websocket,可以在服务器和浏览器之间建立连接。但是,我无法使用ws.send('something');将消息从服​​务器发送到客户端。 在几乎每个示例中,我都能找到使用的方法,但在我看来,它似乎没有用。 有人可以解释一下为什么吗?

const express = require('express');
const path = require('path');
const WebSocket = require('ws').Server;
const router = express.Router();
const SerialPort = require('serialport');
const barCode = new SerialPort('COM50', {
    baudRate: 57600
  });

// --------- SETUP WS ---------
var wsport = 8085;
var ws = new WebSocket({port: wsport});

ws.on('connection', function open() {
  console.log('ws connection has been established.');
  // ws.send('something'); this line is not working!

});

// !!-- BarCode:: Log errors to console when they occur.
barCode.on('error', function(err) {
  console.log('Error: ', err.message); 
});

  barCode.on('data', function (data) {
    console.log('Barcode received:', data);
    ws.send('received barcode');
  });

// --------- SETUP EXPRESS ---------
var app = express();    // Define the application object
var port = 4000;        // Specify the port to listen to

router.get('/',function(req,res){
  res.sendFile(path.join(__dirname+'/public/index.html'));
  //__dirname : It will resolve to your project folder.
});

router.get('/offline',function(req,res){
  res.sendFile(path.join(__dirname+'/public/offline.html'));
  //__dirname : It will resolve to your project folder.
});

app.use(express.static('public'));
app.use('/', router);
app.listen(process.env.port || port);
console.log('Webserver running at port ' + port);

module.exports = app;

1 个答案:

答案 0 :(得分:0)

这是一个很常见的错误 这里的问题是

var ws = new WebSocket({port: wsport});

ws.on('connection', function open() {
  console.log('ws connection has been established.');
  // ws.send('something'); this line is not working!
});

作为新 Websocket 创建的变量,在函数内部无效

ws.on()

因此 ws 不是函数内的有效变量

<块引用>

ws.send() 不是函数,因此是错误

尝试在 ws.on() 中调用另一个函数,该函数可以访问创建套接字对象的变量 ws