ReferenceError:未定义套接字

时间:2016-03-22 15:30:42

标签: python node.js python-2.7 socket.io

我有一个python脚本,每次恢复新值时都会向我的node.js服务器发送数据。

这是我的代码客户端(python脚本):

from socketIO_client import SocketIO

...

def update_db(dateUpdate, res, nameIndex):
    try:
        with SocketIO('192.168.100.103', 8080) as socketIO:
             socketIO.emit('newValues', res)

    except Exception as e:
        print "error socketIO - Impossible to emit data \n"

    #Update database

while True:
    #If new value
        dateUpdate = time.strftime('%Y-%m-%d %H:%M:%S')
        update_db(dateUpdate, res, nameIndex[i])
        break

这是我的node.js服务器:

var path = require('path');
var fs = require('fs');
var mysql = require("mysql");
var express = require('express');

var app = express();

var server = app.listen(8080);
console.log('Server listening on port 8080');

var io = require('socket.io')(server);

io.sockets.on('connection', function () {
    console.log("client connected");

    socket.on('newValues', function (data) {
            console.log("new values : "+data);      
    });
});

问题:

Eache time我的python脚本收到了新数据并且必须发出消息。我的节点服务器停止并显示此错误:

node server.js

Server listening on port 8080
client connected
C:\project\src\server\server.js:26

socket.on('newValues', function (data) {
    ^

ReferenceError: socket is not defined
    at Namespace.<anonymous> (C:\project\src\server\server.js:26:5)
    at emitOne (events.js:90:13)
    at Namespace.emit (events.js:182:7)
    at Namespace.emit (C:project\node_modules\socket.io\lib\nam
espace.js:206:10)
    at C:\project\node_modules\socket.io\lib\namespace.js:174:14

    at nextTickCallbackWith0Args (node.js:452:9)
    at process._tickCallback (node.js:381:13)

任何人都知道错误吗?

2 个答案:

答案 0 :(得分:4)

套接字未定义。您需要将套接字传递给io.sockets.on回调函数。

io.sockets.on('connection', function (socket) {    //Pass socket here
    console.log("client connected");

    socket.on('newValues', function (data) {
        console.log("new values : "+data);      
    });
}

编辑:这是我第一眼看到的最佳猜测解决方案。我对sockets.io不太熟悉。我只是看文档(这个链接有一个类似的例子)http://socket.io/docs/

答案 1 :(得分:0)

写作时

socket.on( 'newValues' , ...)

假设&#34; socket&#34;是一个变量。如果是,则在该呼叫之前尚未定义。

我不太了解IO,但试试这个:

io.sockets.on( 'newValues' , ...)