【问题标题】:Map showing error in typescript地图在打字稿中显示错误 【发布时间】:2016-10-25 17:19:13 【问题描述】: 错误 可观察类型上不存在属性映射 【问题讨论】: 您的实际问题是什么? 请花一些时间阅读帮助页面,尤其是"What topics can I ask about here?" 和"What types of questions should I avoid asking?" 部分。也请read about how to ask good questions,并学习如何创建Minimal, Complete, and Verifiable Example。 标签: typescript angular 【解决方案1】: 您必须像这样从RxJS 导入map 运算符: import 'rxjs/add/operator/map'; 或者只是导入所有RxJS 操作符: import 'rxjs/Rx'; 【讨论】: