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