0
私はclassA.moduleClassB
のように使用するモジュールと私のプロバイダを拡張したいが、私はできませんし、私は(私が好きな)プロバイダIonic2プロバイダでモジュールクラスを作成して使用する方法は?
例として、私のコントローラのページへのモジュールクラスオブジェクトをインポートする方法がわからない:
プロバイダ/私のプロバイダ/私の-provider.ts
export class MyParentClass {
//...
}
export module a {
class MyChildClass {
//...
}
}
ページ/ホーム/ home.ts
import { Component } from '@angular/core';
import { MyParentClass, MyChildClass } from '../../providers/my-provider'
@Component({
selector: 'page-home',
templateUrl: 'home.html',
providers: [
MyParentClass,
MyChildClass
]
});
export class homePage {
constructor(public parentClass: MyParentClass, public childClass: MyChildClass) {
}
}
あなたの回答を編集して簡単な例を書いてください。ありがとう! –
例を使って投稿を編集しました:) –
ありがとうございました!投票してください! –