如何使用 Localhost 在 Web 浏览器中打开 Expo Web?
How To Have Expo Web Open In A Web Browser With Localhost?
运行 npm start
或 expo start
启动项目如下:
React You can now view My React Native App in the browser.
Local: http://localhost:19006/ On Your Network: http://157.201.29.49:19006/
Note that the development build is not optimized.
› To create a production build, run expo build:web › Press Ctrl+C to exit.
Expo Press ? to show a list of all available commands.
按“w”启动 Expo web 打开 Chrome 浏览器,IP 地址 URI http://157.201.29.49:19006/
按照建议。
但是由于办公室VPN,Chrome浏览器无法解析地址。错误是:
This site can’t be reached
ERR_CONNECTION_TIMED_OUT
将Chrome中的URL替换为http://localhost:19006成功。
如何启动 Expo,以便按“w”自动启动本地主机而不是 IP 地址?
要修复,请按如下方式直接启动 expo
,提供本地主机选项:
expo start —-localhost
参见 Expo CLI docs expo start
:
--localhost Same as --host localhost
运行 npm start
或 expo start
启动项目如下:
React You can now view My React Native App in the browser.
Local: http://localhost:19006/ On Your Network: http://157.201.29.49:19006/
Note that the development build is not optimized.
› To create a production build, run expo build:web › Press Ctrl+C to exit.
Expo Press ? to show a list of all available commands.
按“w”启动 Expo web 打开 Chrome 浏览器,IP 地址 URI http://157.201.29.49:19006/
按照建议。
但是由于办公室VPN,Chrome浏览器无法解析地址。错误是:
This site can’t be reached
ERR_CONNECTION_TIMED_OUT
将Chrome中的URL替换为http://localhost:19006成功。
如何启动 Expo,以便按“w”自动启动本地主机而不是 IP 地址?
要修复,请按如下方式直接启动 expo
,提供本地主机选项:
expo start —-localhost
参见 Expo CLI docs expo start
:
--localhost Same as --host localhost