解決異步的方案---回調函數

異步須要注意的問題

  • 異步無法捕獲錯誤,異步代碼不能try catch捕獲
  • 異步編程中可能出現回調地獄
  • 多個異步的操做 在同一個時間內容 同步異步的結果

高階函數

  • 函數做爲函數的參數
  • 函數執行結果返回函數

after函數(在xxx以後執行,能夠限制達到多少次後執行此回調)

function after(times,cb){
        return function(){
            if(--times==0){
                cb()
            }
        }
    }
    
    let fn = after(3,function(){
        console.log('達到三次了')
    })
    
    fn()
    fn()
    fn()
複製代碼

函數柯里化

函數柯里化就是能夠把一個函數的執行須要傳遞的參數分屢次執行node

// 通用的柯里化
    const add = (a, b, c, d, e) => {
       return a + b + c + d + e;
    };
    const curring = (fn,arr = [])=>{
        let len = fn.length
        return (...args)=>{
            arr = arr.concat(args); // [1]  [1,2,3] < 5
            if(arr.length < len){
                return curring(fn,arr)
            }
            return fn(...arr)
        }
    }
    let r = curring(add)(1)(2)(3)(4); // [1,2,3,4,5]
複製代碼

簡單使用判斷數據類型編程

const checkType = (type, content) => {
        return Object.prototype.toString.call(content) === `[object ${type}]`;
    };
    let types = ["Number", "String", "Boolean"];
    let utils = {};
    types.forEach(type => {
      utils["is" + type] = curring(checkType)(type); // 先傳入一個參數
    });
    console.log(utils.isString('hello'));
複製代碼

node文件操做

須要name和age都獲取到而後輸出。bash

let fs = require('fs')
    let schoolInfo = {}
    function after(times,cb){
        return function(){
            if(--times==0){
                cb()
            }
        }
    }
    let fn = after(2,function(){
        consolr.log(schoolInfo)
    })
    fs.readFile('./name.txt','utf8',function(err,data){
        schoolInfo['name'] = data;
        fn()
    })
    
    fs.readFile('./age.txt','utf8',function(err,data){
       schoolInfo['age'] = data;
       fn()
    })
複製代碼

發佈訂閱

let dep = {
        arr:[],
        emit(){
            this.arr.forEach(fn=>fn())
        }
        on(fn){
            this.arr.push(fn)
        }
    }
    dep.on(function(){
        if(Object.keys(schoolInfo).length===2){
            console.log(schoolInfo)
        }
    })
    fs.readFile('./name.txt','utf8',function(err,data){
        schoolInfo['name'] = data;
        dep.emit()
    })
    
    fs.readFile('./age.txt','utf8',function(err,data){
       schoolInfo['age'] = data;
       dep.emit()
    })
複製代碼
相關文章
相關標籤/搜索