我们可以在用ngCordova开发应用程序的同时使用Angular2吗?
据我所知,ngCordova是用AngularJS开发的,它也能与Angular2竞争吗??
发布于 2017-04-09 15:26:35
有离子本机[https://github.com/driftyco/ionic-native ]
完全支持打字稿。
如文档所示:
// app.module.ts
import { Camera } from '@ionic-native/camera';
...
@NgModule({
...
providers: [
...
Camera
...
]
...
})
export class AppModule { }https://stackoverflow.com/questions/43307978
复制相似问题