我不知道为什么,但突然,每次我试图登录我的应用程序,我得到以下错误:
.\node_modules\imap\lib\Connection.js:206
var type = self._curReq.type;
TypeError: Cannot read property 'type' of undefined
at Parser.<anonymous> (.\node_modules\imap\lib\Connection.js:206:28)
at Parser.emit (events.js:95:17)
at Parser._resContinue (.\node_modules\imap\lib\Parser.js:295:8)
at Parser._parse (.\node_modules\imap\lib\Parser.js:140:16)
at Parser._tryread (.\node_modules\imap\lib\Parser.js:82:15)
at CleartextStream.Parser._cbReadable (.\node_modules\imap\lib\Parser.js:53:12)
at CleartextStream.emit (events.js:92:17)
at emitReadable_ (_stream_readable.js:410:10)
at _stream_readable.js:403:7
at process._tickCallback (node.js:419:13)```
我试图注解这些行,但每次都出现以下错误:
events.js:72
throw er; // Unhandled 'error' event
Error: Timed out while authenticating with server
at null._onTimeout (.\node_modules\imap\lib\Connection.js:133:17)
at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)```
有时候我也会得到第二个而不是第一个,即使行没有注解。有人知道发生了什么吗?一个解决方案或至少一个解释?
1条答案
按热度按时间oknwwptz1#
这是(.\node_modules\imap\lib\Connection.js:206:28)中缺少If条件的问题。我最近遇到了这个问题,我发现解决这个问题的唯一可能方法是在上面的文件中添加If Check,即