离子服务显示多个地址,我select了错误的一个…如何更改离子服务使用的地址?
我用ionic serve
并得到了以下的回应,我没有想到三次selectlocalhost
。 但是现在我想要使用选项1. Ionic记得我的select, ionic serve
永远不会允许我select了,并使用localhost
…
我怎样才能改变这一点,使离子发球机使用第一个选项?
Multiple addresses available. Please select which address to use by entering its number from the list below: 1) 192.168.2.10 (en0) 2) localhost Address Selection:
您可以使用ionic address
命令更新Ionic 1.2.3提供的选定地址。
此外,还有一个名为ionic.config
的文件,您可以使用此设置进行修改。 在Mac / Ubuntu上这个文件在~/.ionic
。 在PC上可以在c:/users/username/.ionic
find。 在里面你会看到类似这样的东西,你可以编辑ionicServeAddress
值。
{ "ank": "...", "versionCheck": 1413143560174, "ionicServeAddress": "localhost" }
只需inputionic address
命令,你就可以select再次select你的IP地址。
要么
你可以明确地select你的地址和端口,当你运行ionic serve
通过使用 – --address
和 – --address
选项。 喜欢这个:
ionic serve --address IP_address --port port
例如: ionic serve --address 192.168.1.129 --port 8101
注意事项
- 如果您没有提供端口选项,则使用 – 地址代替默认端口(8100)。
- 指定地址和端口只会改变该会话的设置。 如果您需要覆盖保存的设置,则应该使用
ionic address
命令。
这已在0.6.1
版本中得到修复
通过运行npm install -g generator-ionic
更新到最新版本,然后在当前项目中运行yo ionic
并在Yeoman询问您是否要覆盖您的Gruntfile.js
时selectY