Android上的类星体错误:ip:port的网页无法加载,因为net :: ERR_ADDRESS_UNREACHABLE

时间:2018-09-17 15:32:36

标签: javascript android ios cordova quasar-framework

我正在学习类星体,并使用quasar init name创建了一个新项目。然后,我进入新的项目根目录,并运行quasar mode -a cordova添加一个cordova项目。我CD到src-cordova并运行cordova platform add androidcordova requirements。需求检查没有错误。我回到项目根目录并运行quasar dev -m cordova -T android。结果是一个空页面,显示“由于net :: ERR_ADDRESS_UNREACHABLE无法加载ip:port上的网页”。运行quasar dev正常,而quasar dev -m electron也正常。

enter image description here

当我使用quasar dev -m cordova -T ios在ios上安装它时,会得到一个空白页。另外,如果我cd到src-cordova目录,我可以在ios或android上手动安装Starter Cordova应用程序而不会出现问题。为什么我在android上出现此错误,而在ios上只有默认项目的情况下出现空白页?

类星版本0.17.18
节点版本8.12.0
Cordova版本8.0.0
NPM版本6.4.1
macOS High Sierra 10.13.6

1 个答案:

答案 0 :(得分:1)

Turns out my most recent comment was correct. It is a requirement for the dev computer to be on the same network as the mobile device you wand to install the app on using quasar dev -m cordova -T android/ios. Once I got that set up and there was communication between my computer and the mobile devices, this problem went away.