我有一个json结果,它是一个对象的集合.我需要将它们转换为自定义对象的集合,这些对象具有与json结果不同的属性名称.此实例中也不需要所有结果属性.
[{"empID":"12345","formattedName":"Simpson,Homer"},{"empID":"24680",Marge"},{"empID":"36912",Bart"},{"empID":"13579",Lisa"},Lisa"}]
我的自定义Ojbect
export class multiSelect { constructor( public id: string,public name: string ) { } }
服务
reportsTo(): Observable<multiSelect> { return this._http.get('getCollection') .map((response: Response) => response.json()) .map(({empID,formattedName}) => new multiSelect(empID,formattedName)) .catch(this.handleError); }
我希望我的服务能够归还
[{"id":"12345","name":"Simpson,{"id":"24680",{"id":"36912",{"id":"13579",Lisa"}]
任何帮助,将不胜感激.谢谢.
您可以将数据映射到您的类,如下所示:
reportsTo() { return this._http.get('getCollection') .map((response: Response) => response.json().map(res => new multiSelect(res.empID,res.formattedName))) .catch(this.handleError); }
那应该做你想要的.希望这可以帮助! 原文链接:https://www.f2er.com/angularjs/141784.html