如何获取称为方法的痕迹

时间:2019-03-19 17:04:22

标签: javascript

如何跟踪JS中调用的方法?

remove_action('woocommerce_after_single_product_summary','woocommerce_output_related_products', 20 );

我唯一想到的就是做// file1.js export const util = () => { // get the complete trace // from file2.js #start to file2.js #doSomething } // file2.js import {util} from foo2.js const doSomething = () => { util(); } const start = () => { doSomething(); } ...还有更好的方法吗?

修改

如果我也想看文件名怎么办?

1 个答案:

答案 0 :(得分:2)

您尝试过console.trace()吗?那应该做你想要的。

https://developer.mozilla.org/en-US/docs/Web/API/Console/trace