let require = ()=>{throw new Error('函数必须传参')} let print = (num=require())=>{console.log(num)} print(2) // 2 print(null) // null print() // 报错 ...
分类:
其他好文 时间:
2021-02-04 11:52:57
阅读次数:
0
移动端的特殊样式 /*去除a连接点击时 后侧的高亮背景*/ a { -webkit-tap-highlight-color: transparent; } /*添加这个属性 iOS上 输入框和按钮才可以书写自定义样式*/ input { -webkit-appearance: none; } /*禁 ...
分类:
移动开发 时间:
2021-02-04 11:48:59
阅读次数:
0
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configur ...
分类:
系统相关 时间:
2021-02-03 11:07:55
阅读次数:
0
createWebHistory路由模式路径不带#号(生产环境下不能直接访问项目,需要nginx转发) http://localhost:8080/#/ const router = createRouter({ history: createWebHistory(), routes }); cre ...
分类:
其他好文 时间:
2021-02-02 11:14:24
阅读次数:
0
在以往keil-STM32调试代码时没有遇见过这个问题 代码书写不规范导致的 unsighned char value=100; value = (unsighned int)value*99/100; 在调试过程中 没有对value进行强制类型转换 所以导致输出的目标值不对 还有一个问题 在ICC ...
分类:
其他好文 时间:
2021-02-02 11:07:41
阅读次数:
0
语法:https://www.runoob.com/css/css-syntax.html <!DOctype html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> body{bockground-color:#d ...
分类:
Web程序 时间:
2021-02-02 10:52:40
阅读次数:
0
数组角标越界异常:ArrayIndexOutOfBoundsException int[] arr = new int[]{1,2,3,4,5}; 情况一: for(int i = 0;i <= arr.length;i++){ System.out.println(arr[i]); } 情况二: ...
分类:
其他好文 时间:
2021-02-02 10:33:22
阅读次数:
0
// [\S\s\r\n]*// == 忽略换行匹配 (.)* 是单行 [\S\s\r\n]* 多行 因为在Visual Studio,你若需要匹配换行符以及空白符,需要配合[\S\s]以及[^]。 而\S\s是什么意思呢? 大写的\S是匹配任何非空白字符。 小写的\s是匹配任何空白字符,其中包括空 ...
分类:
其他好文 时间:
2021-02-02 10:31:20
阅读次数:
0
1、点击不同按钮分别创建出模态与非模态对话框子窗口,分别指定每个窗口单独的对话框窗口函数。 #include <Windows.h> #include <tchar.h> #include <CommCtrl.h> #include "resource.h" INT_PTR WINAPI Dialo ...
字符串 @GetMapping("/string") public String stringTest(){ redisTemplate.opsForValue().set("str","Hello World"); String str = (String) redisTemplate.opsFo ...
分类:
其他好文 时间:
2021-02-01 12:45:42
阅读次数:
0