英文:
Running ionic on browser
问题
我正在使用Ionic 3构建一个混合应用程序。当我尝试在浏览器中运行它时,它给我一个"Missing Command Error"错误。尽管它可以在Android和iOS上运行,但我也想在浏览器上进行测试。
英文:
I am building a hybrid app using ionic 3 .While I try to run it in browser it gives me a "Missing Command Error".It runs on android and ios though.But i wanted to test it on browser too.
答案1
得分: 1
在浏览器中测试您的应用程序就像在项目的根文件夹中运行以下命令一样简单:
ionic serve
如果您想在Ionic实验室中运行,则运行以下命令:
ionic serve -l
英文:
Testing your app in a browser is as simple as running the serve command in your project's root folder.
ionic serve
if you want to run in the ionic lab then run command.
ionic serve -l
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论