本文总结Rxjs中的常用Operators Pipe pipe()的参数可以放任意的operators, operator在pipe中依次执行 map, mapTo map 对源 observable 的每个值应用投射函数。 mapTo将每个发出值映射成常量。 1 import { from } f ...
分类:
Web程序 时间:
2021-04-29 12:05:10
阅读次数:
0
主要是集中参考使用方法,可以结合自己的场景解决问题 参考代码 const co =require("co") const AsyncUtil = require('async-utility').default; async function demo(){ return { name:"dalon ...
分类:
Web程序 时间:
2021-04-27 14:20:05
阅读次数:
0
在js中,使用setTimeout函数来延时处理逻辑,参数格式不正确时,延时效果无效 ex:function delay(){// doing something} setTimeout(delay(),5000); // 这个时候delay函数会立即执行,延时效果无效 应该改为:setTimeou ...
分类:
其他好文 时间:
2021-04-26 13:57:51
阅读次数:
0
import Vue from "vue"; // vue自定义指令防抖 Vue.directive("antiShake", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:
其他好文 时间:
2021-04-26 13:57:03
阅读次数:
0
import Vue from "vue"; // vue自定义指令节流 Vue.directive("throttle", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:
其他好文 时间:
2021-04-26 13:55:45
阅读次数:
0
UVA11361 Investigating Div-Sum Property 给定 \(A,B,K\),求在 \([A , B]\) 中,有多少个整数本身能被 \(K\) 整除,并且各个位上数字之和也能被 \(K\) 整除。 一道非常经典的数位 DP 题。 设 \(f(d,m_1,m_2)\) 表 ...
分类:
其他好文 时间:
2021-04-26 13:29:15
阅读次数:
0
鼠标移动到div块时,用CSS实现旋转 实现代码: <body> <div> </div> </body> <style> div { width:200px; height:200px; background-color:pink; margin:100px auto; transition:al ...
分类:
Web程序 时间:
2021-04-26 13:06:28
阅读次数:
0
##区别: vue class component 是vue 官方出的 vue property decorator 是社区出的 其中vue class component 提供了 vue component 等等 vue property decorator 深度依赖了 vue class com ...
分类:
其他好文 时间:
2021-04-24 13:51:37
阅读次数:
0
1 // 防抖 2 function debounce(func,delay){ 3 let timer = null 4 return function(){ 5 let context = this 6 let args = arguments 7 if(timer) clearTimeout( ...
分类:
Web程序 时间:
2021-04-24 11:51:25
阅读次数:
0
不多BB,直接开干!!! 第一步:进入hive安装目录下面的conf目录,修改hive-site.xml文件 cd /opt/module/hive/conf vim hive-site.xml 第二步:修改如下内容 <property> <name>javax.jdo.option.Connect ...
分类:
其他好文 时间:
2021-04-24 11:50:36
阅读次数:
0