2015-02-24 75 views
0

我的回調正在返回以下消息:'來自服務器的響應無效。'從回調中獲取更詳細的錯誤信息

這裏是我的功能,告訴我有來自服務器的響應無效:

function sampleCallBack_Error(sender, eventArgs) { 
alert("ERROR LOADING INFORMATION" + eventArgs.get_message()); 
} 

能找回我除了剛剛get_message其他什麼信息?

回答

0

試着打印整個eventArgs對象,它應該包含更多有用的信息。

function sampleCallBack_Error(sender, eventArgs) { 
    console.log(eventArgs); 
} 
+0

我最終得到[對象對象]的函數()和__proto__我試着鑽了下來,我什麼也沒找到。 – JTunney 2015-02-24 16:15:42

相關問題