如何跟踪反应中的原生反应中的错误?

时间:2016-07-04 06:45:41

标签: reactjs react-native refluxjs

我如何追踪此错误? screen here 我可以找到'申请'我的代码中的属性。 谢谢你的帮助!

我通过评论每个功能

发现了错误
 DateFormat dateFormat = new SimpleDateFormat("MMMM dd,yyyy");
         Date currentDate = new Date();
         String currentDateString = dateFormat.format(currentDate);
         System.out.println(currentDateString);
         try { 
             currentDate = dateFormat.parse(currentDateString);

         } catch (ParseException e) {

         }

          }

为什么会这样?(

1 个答案:

答案 0 :(得分:0)

如果您已经连接到调试服务器,通常在一两秒之后,捆绑的行将替换为源代码文件&线。 如果没有,您可以在开发菜单中启用远程调试,并使用chrome调试流程。

您可以阅读有关在Facebook文档中调试react-native应用程序的更多信息:
https://facebook.github.io/react-native/docs/debugging.html