S) Aşağıdakileri gözlemlenebilir hale nasıl dönüştürürüm, böylece .then(...)
ile arayabilirim?Açısal 2: Değiştirilebilir Dönüştürme Sözlüğü
Benim yöntemim bir söz dönüştürmek istediğiniz:
this._APIService.getAssetTypes().subscribe(
assettypes => {
this._LocalStorageService.setAssetTypes(assettypes);
},
err => {
this._LogService.error(JSON.stringify(err))
},
() => {}
);
hizmet yöntemi çağırır:
getAssetTypes() {
var method = "assettype";
var url = this.apiBaseUrl + method;
return this._http.get(url, {})
.map(res => <AssetType[]>res.json())
.map((assettypes) => {
assettypes.forEach((assettypes) => {
// do anything here you might need....
});
return assettypes;
});
}
teşekkürler! Eğer yok
bu hatayı alın: [ts] '(assettypes: any) => void' türünde argüman 'PromiseConstructor' türünde bir parametreye atanamaz. 'Tümü' özelliği '(assettypes: any) => void' türünde yok. (parametre) assettypes: Herhangi bir – Dave
'getAssetTypes()' ne döndürür? –
Bir dizi arayüz tipi AssetType – Dave