系统环境要求 centos7,yum源正常使用,ip设置为:192.168.8.201; LAMP环境配置 ###软件环境设置systemctl disable firewalld;systemctl stop firewalld;systemctl status firewalldsetenfor ...
分类:
Web程序 时间:
2020-07-12 16:54:30
阅读次数:
66
非谓语的不定式句型 1. too 形容词/副词 to ... : 太...以至于不能 The room is too small to live. 房间太小以至于不能住下。 too ~ to 结构引导的状语表否定含义。 2. enough + n + to + v 这里的enough作形容词修饰后面 ...
分类:
其他好文 时间:
2020-07-11 21:17:06
阅读次数:
87
#如果是点对点(queue),那么此处默认应该是false,如果发布订阅,那么一定设置为true spring.jms.pub-sub-domain=true 欢迎使用以下链接1.https://blog.csdn.net/mxlgslcd/article/details/88683308 2.ht ...
分类:
编程语言 时间:
2020-07-10 21:22:04
阅读次数:
84
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pywin32 pip install pyHook?1.5.1?cp37?cp37m?win_amd64.whl pip install PyUserInput 安装不成功的可以参照ht ...
分类:
编程语言 时间:
2020-07-10 17:21:02
阅读次数:
75
今天学到了一个新的技巧,用鼠标点击 chrome dev tools 的 Elements 中的标签以后 ,使用 $0 就可以获取到鼠标所点击的 DOM 节点 然后总结一下 Dom Scroll 的 api。 常用的就是这几个。 $0.scrollBy(30, 30); $0.scrollTo(0, ...
分类:
其他好文 时间:
2020-07-10 15:42:44
阅读次数:
63
1.利用了正则表达式和三目运算符,含义就是如果是移动端打开的话那就跳转到 "https:www.baidu.com/" ,如果不是就跳转到"http://new.baidu.com/" window.location.href = /Android|webOS|iPhone|iPod|BlackBe ...
分类:
移动开发 时间:
2020-07-10 11:37:54
阅读次数:
96
首先在项目里面install react-amap 我用的自定义图标是svg格式的,可以自行替换成本地icon import React, { Component } from 'react' import { Map, Markers } from 'react-amap' import { Ic ...
分类:
其他好文 时间:
2020-07-09 15:03:25
阅读次数:
155
key是为每个vnode指定唯一的id,在同级vnode的Diff过程中,可以根据key快速的进行对比,来判断是否为相同节点, 利用 key 的唯一性生成 map 对象来获取对应节点,比遍历方式更快,指定key后,可以保证渲染的准确性(尽可能的复用 DOM 元素。) 为什么不建议用index作为ke ...
分类:
其他好文 时间:
2020-07-08 23:15:36
阅读次数:
97
from functools import reduce import re def remove_addsub(exp): s=re.findall("[+-]?\d+(?:\.\d+)?",exp) return reduce(lambda a,b:float(a)+float(b),s) s= ...
分类:
其他好文 时间:
2020-07-08 22:51:48
阅读次数:
68
1、增加devtools依赖 <!-- 热部署DevTools --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId></dependency ...
分类:
其他好文 时间:
2020-07-08 01:23:07
阅读次数:
65