在做项目的时候,用到了dwr,有一次居然报错,错误是
max depth exceeded when dereferencing c0-param0

上网查了一下,我居然传参数的时候传的是object类型的。
var param= document.getElementById("userNo");
Acvs_AjaxBO.getRejectedInstance(param, callback_);

应该改成
var param= document.getElementById("userNo").value;

下次一定记住。

相关文章:

  • 2022-02-25
  • 2022-02-26
  • 2022-12-23
  • 2022-01-08
  • 2021-06-27
  • 2022-12-23
猜你喜欢
  • 2021-08-09
  • 2021-09-30
  • 2021-05-20
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
相关资源
相似解决方案