[VueJsDev] 基础知识 - asyncTool.js异步执行工具
[VueJsDev] 目录列表
https://www.cnblogs.com/pengchenggang/p/17037320.html
asyncTool.js 异步执行工具
::: details 目录
:::
所有的业务逻辑,超过两个后,均要用此工具编写逻辑
Step. 1: getAc 使用方法
- 注册 asyncTool
// src/main.js
import asyncTool from "@/libs/common/asyncTool"
Vue.prototype.$getAc = () => {
return new asyncTool()
}
- 常规使用方法
const ac = this.$getAc()
ac.use(this.businessLogic1)
ac.use(this.businessLogic2)
ac.run()
// methods 里面
businessLogic1 (ctx, next) {
// 业务逻辑1
next()
},
businessLogic2 (ctx, next) {
// 业务逻辑2
next()
},
Meth. 2: use 方法
作用:添加一个函数进入序列
目的:注入上下文ctx 和 next 进入函数体
const ac = this.$getAc()
ac.ctx.abc = 'hello'
ac.use(this.businessLogic1)
ac.run()
// methods 里面
businessLogic1 (ctx, next) {
// ctx 是上下文
// next 是指向下一个函数 使用方法 next()
console.info('ctx.abc', ctx.abc) // hello
}
Meth. 3: run 方法
作用:执行当前方法序列
目的:执行方法序列,可以添加最后一个lastCallBack
const ac = this.$getAc()
ac.use(this.businessLogic1)
ac.use(this.businessLogic2)
ac.use(this.businessLogic3)
// ac.run() // 调用方式1
ac.run(() => { // 调用方式2
// ac对象可以进行分发传递,最后可以进行最后一次尾调用
// 如果用use添加后再run,会产生重复use添加的问题
// doSomething
})
Meth. 4: nextJump 方法
作用:跳过下一个方法
目的:常见于根据条件是否执行下一个方法
businessLogic1 (ctx, next) {
// 业务逻辑1
if (a === 'ok') {
next()
} else {
ctx.nextJump() // 默认跳过下一个方法
}
},
Meth. 5: goto 方法
作用:跳到指定的方法
目的:常见于大跳转的业务逻辑,执行完本逻辑要执行最后几个公共逻辑,跳过中间的check
const ac = this.$getAc()
ac.use(this.businessLogic1)
ac.use(this.businessLogic2)
ac.use(this.businessLogic3)
ac.use(this.businessLogic4)
ac.use(this.businessLogic5)
ac.use(this.businessLogic6, { ref: 'businessLogic6'})
ac.use(this.businessLogic7)
ac.run()
// methods 里面
businessLogic2 (ctx, next) {
// 业务逻辑2
if (a === 'ok') {
next()
} else {
ctx.goto('businessLogic6') // 跳到指定的业务逻辑
}
}
Meth. 6: ifTo 方法
作用:跳过当前方法
目的:常见于条件内部直接判断
// methods 里面
businessLogic1 (ctx, next) {
// 算是个语法糖 目的为占用一行 使得代码简洁
// 加叹号求反的目的是 如果条件不符合 就next,条件符合就执行后面的代码
if (ctx.ifTo(!ctx.modifyIsTrue, next)) return
// 其他业务代码...
}
Meth. 7: 批量动态调用接口
对于一个数组,批量调用接口
getUnLocalNames (ctx, next) {
// 新建和改名字没保存的,不能进行全部保存
let unLocalNames = []
this.tagListByR.forEach(item => {
if (item.type === 'new') {
unLocalNames.push(item.tagName)
}
})
const ac = this.$getAc()
ac.ctx.unLocalNames = unLocalNames
this.tagListByR.forEach(item => {
if (item.type === 'modify') {
ac.use((ctx1, next1) => {
apiRequest('getAppoint', { id: item.filePath }).then(data => {
if (item.tagName !== data.xingMing) {
ctx1.unLocalNames.push(item.tagName)
}
next1()
}, err => {
alert(err)
})
})
}
})
ac.run(() => {
ctx.unLocalNames = unLocalNames
next()
})
},
Code. 8: asyncTool.js 源码
// @/libs/common/asyncTool.js
// 创建时间 2020.03.11
// 更新于 2022.08.29
class asyncTool {
// eslint-disable-next-line
constructor() {
this.arr = []
this.ctx = {
goto: this.goto,
_root: this,
ifTo: this.ifTo,
nextJump: this.nextJump,
}
this.cIndex = 0
this.next = null
}
nextJump(number = 1) {
this._root.cIndex = this._root.cIndex + number + 1
const one = this._root.arr[this._root.cIndex]
console.info(
`%cnextJump one 跳过后 ${number}个 的执行函数是: ${one.func.name} `,
"color:green",
)
this._root._innerRun(one.func, one.next)
}
ifTo(boolValue, next) {
if (boolValue) {
next()
return true
} else {
return false
}
}
goto(funcName) {
let runIndex = -1
console.info("this.arr", this)
this._root.arr.map((item, index) => {
if (item.ref === funcName) {
runIndex = index
}
})
if (runIndex !== -1) {
this._root.cIndex = runIndex
this._root._innerRun(
this._root.arr[runIndex].func,
this._root.arr[runIndex].next,
)
} else {
console.error("未找到goto方法名为" + funcName + "的函数")
}
}
use(func, outParams) {
const initParams = {
ref: "",
}
const params = { ...initParams, ...outParams }
const into = {
...params,
func,
next: () => {},
}
this.arr.push(into)
if (this.arr.length > 1) {
const index = this.arr.length - 2
const nextFunc = () => {
// console.info('func.length', func.length)
this.cIndex = index + 1
this._innerRun(func, this.arr[index + 1].next)
}
this.arr[index].next = nextFunc
}
return this
}
getFuncName(fun) {
// console.info('fun', fun.toString())
var ret = fun.toString()
ret = ret.substr("function ".length)
ret = ret.substr(0, ret.indexOf("("))
return ret
}
_innerRun(func, next) {
// console.info('this', this)
// console.info('func', func)
console.info(
`%cfuncName: ${func.name ? func.name : ""}-${this.getFuncName(
func,
)}-ref:${this.arr[this.cIndex].ref}`,
"color:green",
)
this.next = next
if (func.length === 0) {
func()
}
if (func.length === 1) {
func(next)
}
if (func.length === 2) {
func(this.ctx, next)
}
}
run(lastCallBack) {
// 插入最后回调执行,但是不影响 数组的内容,避免反复执行会重复插入
if (lastCallBack && this.arr.length > 0) {
const lastIndex = this.arr.length - 1
this.arr[lastIndex].next = lastCallBack
}
if (this.arr.length > 0) {
this._innerRun(this.arr[0].func, this.arr[0].next)
// console.info('asyncTool func.length', this.arr[0].func.length)
}
}
}
export default asyncTool
[VueJsDev] 基础知识 - asyncTool.js异步执行工具的更多相关文章
- 浅析JS异步执行机制
前言 JS异步执行机制具有非常重要的地位,尤其体现在回调函数和事件等方面.本文将针对JS异步执行机制进行一个简单的分析. 从一份代码讲起 下面是两个经典的JS定时执行函数,这两个函数的区别相信对JS有 ...
- js 异步执行顺序
参考文章: js 异步执行顺序 1.js的执行顺序,先同步后异步 2.异步中任务队列的执行顺序: 先微任务microtask队列,再宏任务macrotask队列 3.调用Promise 中的res ...
- js异步执行 按需加载 三种方式
js异步执行 按需加载 三种方式 第一种:函数引用 将所需加载方法放在匿名函数中传入 //第一种 函数引用 function loadScript(url,callback){ //创建一个js va ...
- JS异步执行之setTimeout 0的妙用
最近在工作中遇到一些问题,大致是关于js执行问题的.由于没搞清执行顺序,导致出现了一些奇怪的bug. 所以这里整理一些有关异步执行的知识(冰山一角角)... 大家都知道js是单线程的,执行起来是顺序的 ...
- 前端知识总结--js异步事件顺序
js中异步事件中容易混淆的 Promise 和 setTimeout 的执行顺序是怎样的? setTimeout(() => console.log(1), 0); new Promise(fu ...
- js异步执行原理
我们都知道js是一个单线程的语言,所以没办法同时执行俩个进程.所以我们就会用到异步. 异步的形式有哪些那,es5的回调函数.es6的promis等 异步的运行原理我们可以先看下面这段代码 应该很多人都 ...
- Java基础知识强化92:日期工具类的编写和测试案例
1. DateUtil.java,代码如下: package cn.itcast_04; import java.text.ParseException; import java.text.Simpl ...
- Java基础知识强化63:Arrays工具类之方法源码解析
1. Arrays工具类的sort方法: public static void sort(int[] a): 底层是快速排序,知道就可以了,用空看. 2. Arrays工具类的toString方法底层 ...
- Java基础知识强化62:Arrays工具类之概述和使用
1. Arrays工具类: Arrays这个类包含操作数组(比如排序和查找)的各种方法. 2. Arrays的方法: (1)toString方法:把数组转成字符串 public static Stri ...
- Android学习之基础知识三(Android日志工具Log的使用)
Android中的日志工具Log(android.util.Log): 1.打印日志的方法(按级别从低到高排序): Log.v():级别verbose,用于打印最为烦琐,意义最小的日志 Log.d() ...
随机推荐
- AiTrust下预训练和小样本学习在中文医疗信息处理挑战榜CBLUE表现
项目链接: https://aistudio.baidu.com/aistudio/projectdetail/4592515?contributionType=1 如果有图片缺失参考项目链接 0.项 ...
- Prompt learning 教学[案例篇]:文生文案例设定汇总,你可以扮演任意角色进行专业分析
Prompt learning 教学[案例篇]:文生文案例设定汇总,你可以扮演任意角色进行专业分析 1.角色扮演 行为 Prompt写法 "牙医" ""我想让你 ...
- 机器学习基础01DAY
数据的特征抽取 现实世界中多数特征都不是连续变量,比如分类.文字.图像等,为了对非连续变量做特征表述,需要对这些特征做数学化表述,因此就用到了特征提取. sklearn.feature_extract ...
- 使用yum查询系统安装的软件及可以更新的软件并单独指定升级某一个软件
Linux系统下yum命令查看安装了哪些软件包: $yum list installed //列出所有已安装的软件包 yum针对软件包操作常用命令: 1.使用YUM查找软件包 命令:yum searc ...
- Java设计模式-备忘录模式Memento
介绍 备忘录模式(Memento Pattern)在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态.这样以后就可将该对象恢复到原先保存的状态. 可以这里理解备忘录模式:现实生 ...
- Java设计模式-代理模式Proxy
介绍 代理模式是一种比较好理解的设计模式.简单来说就是 我们使用代理对象来代替对真实对象(real object)的访问,这样就可以在不修改原目标对象的前提下,提供额外的功能操作,扩展目标对象的功能. ...
- Spring Boot图书管理系统项目实战-5.读者管理
导航: pre: 4.基础信息管理 next:6.图书管理 只挑重点的讲,具体的请看项目源码. 1.项目源码 需要源码的朋友,请捐赠任意金额后留下邮箱发送:) 2.页面设计 <!DOCTYPE ...
- 使用spring boot jpa进行增删改查
项目地址:https://gitee.com/indexman/spring_boot_in_action 编写实体类User package com.laoxu.springboot.entity; ...
- win32-创建一个屏幕准星(UpdateLayeredWindow)
// Test_1.cpp : Defines the entry point for the application. // #include "framework.h" #in ...
- Ansible原理和安装
目录 Ansible Ansible简介 Ansible的特性 Ansible的基本组件 Ansible安装(rhel8/rhel9) 1. rhel8安装 1.1 配置epel源 1.2 安装ans ...