Maximum call stack size exceeded error

后端 未结 30 2555
独厮守ぢ
独厮守ぢ 2020-11-21 23:51

I am using a Direct Web Remoting (DWR) JavaScript library file and am getting an error only in Safari (desktop and iPad)

It says

Maximum call

30条回答
  •  长情又很酷
    2020-11-22 00:19

    In my case, I was sending input elements instead of their values:

    $.post( '',{ registerName: $('#registerName') } )
    

    Instead of:

    $.post( '',{ registerName: $('#registerName').val() } )
    

    This froze my Chrome tab to a point it didn't even show me the 'Wait/Kill' dialog for when the page became unresponsive...

提交回复
热议问题