在React native中的npm start命令

时间:2018-01-11 05:48:56

标签: react-native

在物理设备中运行react app时,'npm start命令'实际上是什么。编写此命令是否必须在真实设备中运行react app?如果是,那么为什么以及如果没有原因?

1 个答案:

答案 0 :(得分:0)

对于使用rebase创建的应用,命令为react-native run-ios

非crna应用程序通过连接设备,执行任何必要的create-react-native-app并运行react-native run-androidimport java.awt.Component; import java.awt.Window; import javax.swing.*; public class Users { public static void saveUpdate(JPanel pnlUsers) { Component[] components = pnlUsers.getComponents(); for(int i=0;i<components.length;i++){ System.out.println("Component name - " + components[i].getName()); // For database update. Code will be added after fix. } } } 来在物理设备上运行。