我通过react-native初始化创建我的应用程序并运行android仿真器,我试图通过react native调试器对其进行调试。我将我的应用程序连接到react native调试器,但是在Sources选项卡中看不到src,images等文件夹。我看到的所有文件都没有文件夹,包括所有node_modules文件。如何查看src文件夹及其中的javascript文件? 这是我所看到的: enter image description here
答案 0 :(得分:0)
尝试使用debugger
。它将停止执行,并从该行显示断点。
willFocusAction = () => {
debugger;
this.setState({ loading: true });
this.wsGetContestList(this.state.defaultPage, false)
}