定义几个常用的方法 const utils = { //定义变量是否存在 js有两个表示不存在的值 undefined|null true表示存在 false表示不存在(undefined|null) existy(val) { return val != null //undefined 也是可以 ...
分类:
其他好文 时间:
2020-11-27 11:46:22
阅读次数:
19
1、引入fs模块 const fs = require('fs'); 2、常用方法 1、fs.stat 检测是文件还是目录 检测文件or目录是否存在 检测是文件还是目录 fs.stat('./test.html',(err,data)=>{ if(err){ console.log(err); re ...
分类:
Web程序 时间:
2020-11-23 12:21:53
阅读次数:
12
问题原因是 Windows不支持pcntl库 ,参考 https://stackoverflow.com/questions/30045085/how-to-install-pcntl-extension-in-windows 解决方案: https://stackoverflow.com/ques ...
一、activiti的监听器分为:全局监听、连线监听、节点监听。 1、节点监听 <userTask id="myTask" name="My Task" > <extensionElements> <activiti:taskListener event="create" class="org.ac ...
分类:
其他好文 时间:
2020-11-21 12:48:08
阅读次数:
33
b1.csv name zhangsan lisi aa.csv name zhangsan wangsi check_names <- function(file) { require(readr) check_file <- readr::read_delim(file=file,delim=" ...
分类:
其他好文 时间:
2020-11-19 12:03:15
阅读次数:
3
简介 上文介绍了ansible的shell模块,今天要为大家分享的是command模块和raw模块的使用。 command和raw模块和shell一样,都是用于执行shell命令,三者都不具备幂等性,如果有能替代的ansible模块,尽量不要说使用该模块。 对比 模块 用途 特点 shell 均用于 ...
分类:
其他好文 时间:
2020-11-16 13:48:59
阅读次数:
9
本文介绍Vue前端开发中require.context方法的使用技巧
分类:
其他好文 时间:
2020-11-16 13:07:41
阅读次数:
3
Professional mechanics require the use of professional OBD2 diagnostic tools to get the job done. but before selected outstanding high-end scanners, w ...
分类:
其他好文 时间:
2020-11-12 13:22:27
阅读次数:
9
SpringBoot 通过自定义注解实现切面编程 1、相关依赖包 <!-- aop 依赖包 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifa ...
分类:
编程语言 时间:
2020-11-12 13:21:35
阅读次数:
11
<ul> <li v-for="(item, index) in exclusiveBrand" :key="index"><img :src="item.img" alt=""></li> </ul> data() { return { exclusiveBrand: [ { id: 1, img ...
分类:
其他好文 时间:
2020-11-10 10:48:15
阅读次数:
9