Unhandled rejection TypeError: Cannot read property 'output' of undefined
See original GitHub issueHello kengz,
Great work with the modules.
I am facing an error while following the steps in tutorial.
package json :
{ "name": "nlp-app", "version": "1.0.0", "description": "Sample app", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Test", "license": "ISC", "dependencies": { "poly-socketio": "1.1.4", "spacy-nlp": "^1.0.7" } }
Issue Analytics
- State:
- Created 6 years ago
- Comments:14 (2 by maintainers)
Top Results From Across the Web
Unhandled Rejection (TypeError): Cannot read property of ...
To fix this, either make the initial state be something that works with your render method, or make your render method check for...
Read more >Cannot Read Property of Undefined in JavaScript - Rollbar
TypeError: Cannot read property of undefined occurs when a property is read or a function is called on an undefined variable.
Read more >Uncaught TypeError: Cannot read property of undefined In
Uncaught TypeError: Cannot read property of undefined error occurs in Chrome when you read a property or call a method on an undefined...
Read more >Unhandled Rejection (TypeError): Cannot read properties of ...
Hi Syncfusion, I have problem when using GridComponent inside a popup. After I insert 1 row and delete that row. When I hide...
Read more >sfdx force:mdapi:deploy - unhandled rejection TypeError ...
... server for validation we receive after 20 minutes an error Unhandled rejection TypeError: Cannot read property 'result' of null 10:35:11 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Any update on solving this ?
I think you need to wait for the servers to be started. I had the same error, so I set a timeout:
Not very elegant.
However, I thought the
spacyNLP.server
should return a promise. I triedspacyNLP.server({ port: process.env.IOPORT }).then(...)
, but this does not work.