0

我在 python 3.4 中有这个 asyncio 类:

class Type1:

    def __init__(s,websocket,path,flds,MyId):
        global TypeOnes
        s.ws=websocket
        s.pt=path
        s.iId=flds
        s.ID=MyId
        s.cnt=0
        TypeOnes[MyId]=s
        s.Q=asyncio.Queue


    @asyncio.coroutine
    def handlerIn(s,rxed):
        #yield from s.Q.put(rxed)  # gave error missing positional 'item'
        #yield from s.Q.put(item=rxed)   # gave error missing positional 'self'
        yield from s.Q.put(self=s.Q,item=rxed) # gave error TypeError: _consume_done_getters() missing 1 required positional argument: 'self'

当调用 HandlerIn 时,我似乎无法调用 Q.put,请参阅注释代码以了解尝试和结果。

就好像自我没有被正确插入

我在调试器中,并且检查了变量的内容:

(handlerIn)>>> s.Q
<class 'asyncio.queues.Queue'>

(handlerIn)>>> rxed
'Button'
4

1 回答 1

3

我认为问题在于您尚未创建asyncio.Queue. 它应该是

s.Q=asyncio.Queue()
于 2018-11-12T03:13:39.923 回答