情景:静态页面想用手机测试。
电脑软件webstorm中的项目,在电脑打开访问,复制浏览器地址,并修改localhost为本地IP地址,在手机上无法访问。
原因:复制的浏览器地址端口号大于10000,所有无法访问
解决:设置端口
File | Settings | Build, Execution, Deployment | Debugger
:Built-in server
1.设置端口小于10000
2.勾选允许外部访问, Can accept external connections
( 能接受外部连接)
3.勾选 Allow unsigned requests
(允许未签名的请求)
验证:
最后,你就可以用手机链接当前页面的链接,记得把localhost改为电脑本机的IP。就可以访问了。
如:
http://localhost:3342/website/src/main/webapp/index.html 改为: http://192.168.51.169:3342/website/src/main/webapp/index.html