Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 vagrant linux 机器上构建一个 react-native-app。
我正在尝试使用 expo 访问我手机上的应用程序,但它不起作用。
有没有人设法通过端口转发或类似的东西来完成这项工作?
您需要将 linux 机器与手机放在同一网络上。
为了更具体一点,vagrant 文件应该包含以下行(ip 地址是可选的): config.vm.network "public_network", ip: "ip address"
config.vm.network "public_network", ip: "ip address"
例如:
config.vm.network "public_network"
config.vm.network "public_network", ip: "192.168.1.9"
这里有几个有用的链接:
Sureshkm 的 Youtube 教程
流浪文档