js 中 Maximum call stack size exceeded

翻译过来的意思是栈溢出,原因是调用某方法达到最大次数,有可能是递归也可能是方法调用陷入了死循环

控制台错误:

jquery.min.js:2 Uncaught RangeError: Maximum call stack size exceeded
    at jquery.min.js:2
    at f (jquery.min.js:2)
    at fa.select (jquery.min.js:2)
    at Function.fa [as find] (jquery.min.js:2)
    at HTMLTableSectionElement.handlers (jquery.min.js:3)
    at HTMLTableSectionElement.dispatch (jquery.min.js:3)
    at HTMLTableSectionElement.r.handle (jquery.min.js:3)
    at Object.trigger (jquery.min.js:3)
    at HTMLAnchorElement. (jquery.min.js:3)
    at Function.each (jquery.min.js:2)

 

  js:

 /**
  * 编辑优惠券
  */
 editCoupon: function () {
   let self = this;
   $('#admui-pageContent').on("click", ".edit_coupon", function () {
   let couponId = self.table.getSelectData(this).couponId;
   $(this).attr("href","/coupon/couponDetail?couponId=" +couponId);
    $(this).click();
  });
},

解决方式:删掉$(this).click();

 

你可能感兴趣的:(JS)