一.RxJS是什么? 官方文档使用了一句话总结RxJS: Think of RxJS as Lodash for events.那么Lodash主要解决了什么问题?Lodash主要集成了一系列关于数组.对象.字符串等集合操作,极大的方便了对这些集合数据进行衍生.举个简单的例子:求数组偶数元素的平方和 const { pipe, filter, map, reduce } = require('lodash/fp') const source = [0, 1, 2, 3, 4] const res