0
我是新來的websockets,我試圖hanlde他們拋出的錯誤。如何得到在websockets中的錯誤的解釋
我有類似
websock.onerror=function (evt)
{ alert(the reason it falied is...);}
我怎樣才能得到錯誤的解釋嗎?
例如,控制檯說「由於db中的限制,你不能刪除它」。
我怎樣才能得到這個並將其顯示給用戶而不是僅僅提醒「錯誤刪除」?
謝謝,但是,警告'evt.message'說'undifined' .... – user2860857
我也試過類似'se.onclose = function(event){alert(event.reason);'並警告一個空框... – user2860857