Maximum call stack size exceeded error

后端 未结 30 3212
独厮守ぢ
独厮守ぢ 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:36

    Check if you have a function that calls itself. For example

    export default class DateUtils {
      static now = (): Date => {
        return DateUtils.now()
      }
    }
    

提交回复
热议问题