我想将Github(https://github.com/DigitalsunrayMedia/cordova-plugin-stepcounter)上可用的Cordova插件添加到我的IONIC 5+电容器(角度)项目中。
而且,我不知道如何安装和集成此插件,因为官方手册(https://capacitor.ionicframework.com/docs/cordova/using-cordova-plugins)指出,npm install https://github.com/DigitalsunrayMedia/cordova-plugin-stepcounter
也npm install ionic-native/???????
我的问题就在这里!我应该如何使用npm install ionic-native/????????
输入?所需的插件不作为Ionic Native插件存在。
如果我简单地执行以下命令就足够了:
npm install https://github.com/DigitalsunrayMedia/cordova-plugin-stepcounter.git
npx cap sync
没有npm install ionic-native/????
的步骤
我还想知道是否可以在Ionic Capacitor中轻松添加和使用它,或者是否必须在文件中进行更改。
如何在Typescript中解决此插件?我是否需要向module.app添加任何内容?
如果按照电容器规定的方式进行,就足够了:import { Plugins } from '@capacitor/core';
const { Stepcounter } = Plugins;
我非常感谢您的任何建议!谢谢你 :)最好的祝福,程序员]]
我想将一个可在Github(https://github.com/DigitalsunrayMedia/cordova-plugin-stepcounter)上找到的Cordova插件添加到我的IONIC 5+电容器(角度)项目中。另外,我也不知道该如何...
是的,您可以安装插件并在没有ionic-native的情况下使用它,基本上ionic-native只是类型库的包装器。