Javascript函数式编程之简单的操作符实现(一)
栏目: JavaScript · 发布时间: 6年前
内容简介:由于最近在学习响应式编程rxjs库,发现学习rxjs的关键是学会使用各种操作符来操作集合,由于rxjs将操作符抽象封装成为可重用、可组合的构建块,所以需要我们掌握每个操作符的原理,才能更好的应用他们,今天就介绍几个常见的方法原理实现
由于最近在学习响应式编程rxjs库,发现学习rxjs的关键是学会使用各种操作符来操作集合,由于rxjs将操作符抽象封装成为可重用、可组合的构建块,所以需要我们掌握每个操作符的原理,才能更好的应用他们,今天就介绍几个常见的方法原理实现
map实现
Array.prototype.map=function(){
const result=[];
this.forEach(function(item,index,this){
this.result.push(callback(item,index,this))
})
return result;
}
复制代码
filter实现
Array.prototype.filter=function(callback){
const result=[];
this.forEach(function(item,index){
if(callback(item,index)){
result.push(item)
}
});
return result;
}
复制代码
concatAll实现(将数组扁平化)
Array.prototype.concatAll = function() {
var result = [];
this.forEach((array) => {
result.push.apply(result, array);
});
return result;
};
复制代码
concatMap实现
Array.prototype.concatMap=function(callback){
return this.map(item=>{
return callback(item);
}).concatAll()
}
复制代码
reduce实现
Array.prototype.reduce=function(callback,init){
let index,result;
if(this.length === 0){
return this
}else{
if(arguments.length ===1){
index = 1;
result = this[0]
}else if(arguments.length ===2){
index = 0;
result = init;
}else{
throw "无效的参数"
}
while(index<this.length){
result = callback(result, this[index])
index++;
}
}
return [result]
}
复制代码
zip实现
Array.zip = function(left, right, callback) {
var results = [];
for(let i = 0; i < Math.min(left.length, right.length); i++) {
results.push(callback(left[i],right[i]));
}
return results;
};
复制代码
想一想
var movieLists = [
{
name: "Instant Queue",
videos : [
{
"id": 70111470,
"title": "Die Hard",
"boxarts": [
{
width: 150,
height: 200,
url: "http://cdn-0.nflximg.com/images/2891/DieHard150.jpg"
},
{
width: 200,
height: 200,
url: "http://cdn-0.nflximg.com/images/2891/DieHard200.jpg"
}
],
"url": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 4.0,
"bookmark": []
},
{
"id": 654356453,
"title": "Bad Boys",
"boxarts": [
{
width: 200,
height: 200,
url: "http://cdn-0.nflximg.com/images/2891/BadBoys200.jpg" },
{
width: 150, height: 200, url: "http://cdn-0.nflximg.com/images/2891/BadBoys150.jpg" }
],
"url": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 5.0,
"bookmark": [{ id: 432534, time: 65876586 }]
}
]
},
{
name: "New Releases",
videos: [
{
"id": 65432445,
"title": "The Chamber",
"boxarts": [
{ width: 150, height: 200, url: "http://cdn-0.nflximg.com/images/2891/TheChamber150.jpg" },
{ width: 200, height: 200, url: "http://cdn-0.nflximg.com/images/2891/TheChamber200.jpg" }
],
"url": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 4.0,
"bookmark": []
},
{
"id": 675465,
"title": "Fracture",
"boxarts": [
{
width: 200,
height: 200,
url: "http://cdn-0.nflximg.com/images/2891/Fracture200.jpg"
},
{
width: 150,
height: 200,
url: "http://cdn-0.nflximg.com/images/2891/Fracture150.jpg"
},
{
width: 300,
height: 200,
url: "http://cdn-0.nflximg.com/images/2891/Fracture300.jpg"
}
],
"url": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 5.0,
"bookmark": [{ id: 432534, time: 65876586 }]
}
]
}
];
//如果只用以上的方法组合将上面的数组输出以下内容,你能想出几种组合方案呢
/*
[
{
"id": 675465,
"title":"Fracture",
"boxart":"http://cdn-0.nflximg.com/images/2891/Fracture150.jpg"
},
{
"id": 65432445,
"title": "TheChamber",
"boxart":"http://cdn-0.nflximg.com/images/2891/TheChamber150.jpg"
},
{
"id": 654356453,
"title": "Bad Boys",
"boxart":"http://cdn-0.nflximg.com/images/2891/BadBoys150.jpg"
},
{
"id": 70111470,
"title": "Die Hard",
"boxart":"http://cdn-0.nflximg.com/images/2891/DieHard150.jpg"
}
]
*/
复制代码
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Android RxJava 操作符详解系列:条件 / 布尔操作符
- C语言中点操作符(.)和箭头操作符(->)的不同之处
- JavaScript骚操作之操作符
- JS操作符拾遗
- 浅谈JavaScript位操作符
- rxjs switchMap操作符
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Learn Python the Hard Way
Zed Shaw / Example Product Manufacturer / 2011
This is a very beginner book for people who want to learn to code. If you can already code then the book will probably drive you insane. It's intended for people who have no coding chops to build up t......一起来看看 《Learn Python the Hard Way》 这本书的介绍吧!