如何跟踪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();
}
...还有更好的方法吗?
修改
如果我也想看文件名怎么办?
答案 0 :(得分:2)
您尝试过console.trace()吗?那应该做你想要的。
https://developer.mozilla.org/en-US/docs/Web/API/Console/trace