将 ngCordova 与 Angular 一起使用 2
Using ngCordova with Angular 2
我们可以在使用 Angular2 开发应用程序时使用 ngCordova 吗?
ngCordova 是用 AngularJS 开发的,据我所知,它也可以与 Angular2 竞争吗??
有离子本机 [https://github.com/driftyco/ionic-native ]
完全支持打字稿。
文档中的示例:
// app.module.ts
import { Camera } from '@ionic-native/camera';
...
@NgModule({
...
providers: [
...
Camera
...
]
...
})
export class AppModule { }
我们可以在使用 Angular2 开发应用程序时使用 ngCordova 吗?
ngCordova 是用 AngularJS 开发的,据我所知,它也可以与 Angular2 竞争吗??
有离子本机 [https://github.com/driftyco/ionic-native ]
完全支持打字稿。
文档中的示例:
// app.module.ts
import { Camera } from '@ionic-native/camera';
...
@NgModule({
...
providers: [
...
Camera
...
]
...
})
export class AppModule { }