ionic常用命令
Posted znsongshu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ionic常用命令相关的知识,希望对你有一定的参考价值。
ionic cordova prepare android
ionic cordova run android -l
If the Logcat window is hidden, you can enable it in View » Tool Windows » Logcat.
File Protocol
Cordova and Capacitor apps are hosted on a local HTTP server and are served with the http://
protocol. Some plugins, however, attempt to access device files via the file://
protocol. To avoid difficulties between http://
and file://
, paths to device files must be rewritten to use the local HTTP server. For example, file:///path/to/device/file
must be rewritten as http://<host>:<port>/<prefix>/path/to/device/file
before being rendered in the app.
For Cordova apps, the Ionic Web View plugin provides a utility function for converting File URIs: window.Ionic.WebView.convertFileSrc()
. There is also a corresponding Ionic Native plugin: @ionic-native/ionic-webview
.
For Capacitor apps, converting file URIs is very similar:
import Capacitor from ‘@capacitor/core‘; Capacitor.convertFileSrc(filePath);
ionic cordova plugin add cordova-sqlite-storage
npm install @ionic-native/camera
ionic cordova plugin add cordova-plugin-camera
以上是关于ionic常用命令的主要内容,如果未能解决你的问题,请参考以下文章