簡體   English   中英

Chrome 開發工具並沒有在添加斷點時停止,而是在 React 模塊中出現不同的異常時停止

[英]Chrome dev tools didn't stopped on added breakpoints, instead they stopped at different exceptions present in React Modules

在這里,我在第 2、3、5、6、7 行添加了斷點:

else{
    console.log('In the patch>>>>>>>started<<<<<<');
    axios.put(patchUser, { name : name, dateofbirth : dob, hobbies : hobby })
    .then((res) => {
        console.log(res);
        console.log("<<<<<<<<<<<<<<<<<>>>>>>In the patch....>>>>>>>>");
        alert(res);
        window.location.reload(false);
    })
}

並且,在下一個代碼中,開發工具在第 4 行停止調試(拋出錯誤)

if (prefix === undefined) {
  // Extract the VM specific prefix used by each line.
  try {
    throw Error();
  } catch (x) {
    var match = x.stack.trim().match(/\n( *(at )?)/);
    prefix = match && match[1] || '';
  }
} // We use the prefix to ensure our stacks line up with native stack frames.


return '\n' + prefix + name;

} }

非常感謝您的任何支持。

當您進入開發工具中的“資源”時。 在您的最右邊,您可以選擇“停用斷點”和“異常暫停”。 請看看你是否不小心按下了這些中的任何一個。

不是開發工具專業人士,但請記住,我曾一度為同樣的事情苦苦掙扎 :)

最好的,符文

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM