Q
流錯誤處理
0
A
回答
1
我試着用url
指向我的博客的代碼。但是,如果您在got
實例上調用pipe
,它似乎並不關心error
事件是否已觸發。
所以,這裏的變通方法:
got.stream(url)
.on('response', response => {
response.pipe(res); // pipe to express's res.
})
.on('error', err => {
// handle error
});
而是從got
對象調用直接pipe
的,你可以聽的響應事件,管你有另一個響應流的響應。
+0
謝謝@winter!我想我必須解決這個問題,但我不認爲只需在'.on('response')'回調中輸入響應。 – carebdayrvis
+0
@carebdayrvis不客氣。 – winter
相關問題
- 1. 流星HTTP.get錯誤處理
- 2. 流星錯誤處理
- 3. 錯誤#2044:未處理的IOErrorEvent :. text =錯誤#2032:流錯誤
- 4. 錯誤#2044:未處理的IOErrorEvent :.文本=錯誤#2032:流錯誤
- 5. 錯誤#2044:未處理的IOErrorEvent :. text =錯誤#2032:流錯誤
- 6. HTTP流水線和錯誤處理
- 7. Windows工作流錯誤處理
- 8. C++ Boost io流,錯誤處理
- 9. 子流程錯誤處理滑倒
- 10. 節點流答應錯誤處理
- 11. 模板命名錯字錯誤的流星錯誤處理
- 12. Node.js流/管道錯誤處理(更改錯誤響應狀態)
- 13. 處理錯誤
- 14. 錯誤處理
- 15. 處理錯誤
- 16. 處理錯誤
- 17. 處理錯誤
- 18. 錯誤處理
- 19. 錯誤處理
- 20. 處理錯誤
- 21. 處理錯誤
- 22. 處理 - 錯誤
- 23. 錯誤#2044:未處理ioError :.文本=錯誤#2032:流錯誤。在AS3
- 24. Node.js錯誤處理
- 25. 處理Java錯誤
- 26. WCF - 錯誤處理
- 27. PHP:FOPEN錯誤處理
- 28. Asynctask錯誤處理
- 29. PHP處理錯誤
- 30. Retrofit2:錯誤處理
你在快速中間件或節點的http請求處理程序中使用'got'嗎?內部表達中間件內的 – winter
@ winter。 – carebdayrvis