報錯信息
@Fetch.fetch: fetch authority is same with origin authority, which is forbidden
報錯原因
不允許在ER代碼內fetch請求ER域名自身。例如ER域名為 1.a.com
,您可以在ER代碼內fetch請求1.a.com
以外的域名,但您不能fetch請求1.a.com
自身。
報錯信息
HttpBody.constructor: invalid status code
報錯原因
596
、597
、598
、599
均屬于ER內部使用的響應狀態碼,禁止您在代碼中主動返回這些狀態碼。
報錯信息
io error@: io error(Connection reset by peer)
報錯原因
ER執行的時間超過了CPU規格限制,ER主動斷開連接,ER虛擬機被中止,系統會生成錯誤日志。
2023 0306 16:39:39.611431 115939 JSThread-3() E @tag(JSError) @loc(src/js-instance-inl.h:366)]: <uid: debugger::I::79de2290-d3a3-4f89-81db-6c3ba779b8b2;event: fetch;host: ;path: /;auth: market.wapa.taobao.com;unique_id: ;pip: 127.0.0.1:46174;fetch_uuid: b5f59f33-8f9b-487d-be32-56e3c368f3f0;start_ts: 1678091979098;req: http;milestone: *-*---;><N/A><>: category: Fatal Error; caller: JSInstance; sub-reason: cpu time; description: N/A; message: the virtual machine has been forcebly terminated for user id 'debugger::I::79de2290-d3a3-4f89-81db-6c3ba779b8b2' due to its violation of resource constraints of system!
解決方法
您需要調大CPU時間規格,例如從50 ms調整為100 ms。
報錯信息
unhandled error(13485,13477)@: Error: io error@: no available fetch proxy address now\nstacktrace:\nN/A\n
報錯原因1
您在cache.put
中put的是以https
開頭的URL,由于cacheAPI不支持https
,您需要將https
改成http
。
報錯原因2
fetch請求的是一個非CDN的域名,但是您設置了cdnProxy:true
,您需要將fetch的域名也接入CDN/DCDN,或者刪除cdnProxy:true
配置。
報錯信息
Error: unhandled error(13486,13505)@: Broken connection, unexpected EOF
報錯原因
ER在接收上游服務返回的數據時,上游服務主動斷開連接。
文檔內容是否對您有幫助?