0
と私は、角2アプリをコンパイルしたいgulpfileに取り組んでいますが、私は若干の誤差が出る:angular2一気タスクがコンパイルされますが、エラー
彼らはそれによってどういう存在しません。タイプ "..."で、どうすればそれが存在するのですか? NativeWindowのwindow.service.ts
は次のようになりますされている場合:
//--------------------------------------------------------------------------------------------------
// Imports Section:
//--------------------------------------------------------------------------------------------------
import {Injectable} from 'angular2/core'
import {window} from 'angular2/src/facade/browser';
//--------------------------------------------------------------------------------------------------
// Service Class:
//--------------------------------------------------------------------------------------------------
@Injectable()
export class WindowService {
//----------------------------------------------------------------------------------------------
// Constructor Method Section:
//----------------------------------------------------------------------------------------------
constructor() { }
//----------------------------------------------------------------------------------------------
// Public Properties Section:
//----------------------------------------------------------------------------------------------
get nativeWindow(): Window {
return window;
}
}
あなたのスクリーンショットから伝えるのは難しいです。どのタイプが 'preferences'を持っていますか?また、 'window'はあなたのサービスになっていますか? – LordTribual
また、なぜあなたは 'window'オブジェクトを返すサービスを持っていますか?これのユースケースは表示されません。 – LordTribual