IONIC:App模块无法与提供商合作

时间:2017-04-08 11:03:47

标签: angular typescript ionic2 provider

我正在使用Ionic 2,我的应用程序无法与全球提供商合作。

我的提供者声明:

@NgModule({
   ...
   providers: [
       MyService
   ]
})

我的提供商内容:

@Injectable()
export class MyService {
   ...
}

在我的组件中:

@Component({
    ...
})
export class MyComponent {
    constructor(serviceVariable: MyService) {
        serviceVariable.someMethod();
    }
}

我的离子信息:     Cordova CLI:6.5.0     离子框架版本:2.3.0     离子CLI版本:2.2.1

Ionic App Lib Version: 2.2.0
Ionic App Scripts Version: 1.1.4
ios-deploy version: Not installed
ios-sim version: Not installed
OS: Linux 4.9
Node Version: v6.2.0
Xcode version: Not installed

当我尝试在我的应用程序中使用时,我没有看到提供商MyService。

任何人都知道为什么?

0 个答案:

没有答案