css样式: <style> * { padding: 0; margin: 0; font-family: "微软雅黑"; font-size: 14px;} ul,li { list-style: none; } a { text-decoration: none; color: black; ...
分类:
其他好文 时间:
2020-07-18 11:26:07
阅读次数:
91
1、在组件中直接使用style,注意,div1各个属性值加双引号 const div1 = { width: "300px", margin: "30px auto", backgroundColor: "#44014C", //驼峰法 minHeight: "200px", boxSizing: ...
分类:
Web程序 时间:
2020-07-17 14:00:41
阅读次数:
74
设置 config set slowlog-log-slower-than 10000(微秒) //查看redis时间超过上面设置的阀值的key slowlog len 有几个key slowlog get 获取详情 ...
分类:
其他好文 时间:
2020-07-16 21:08:48
阅读次数:
58
<template> <div class="m50"> <el-table border style="margin-top: 50px;" :data="originData"> <el-table-column label="题型" property="type" align="center" ...
分类:
其他好文 时间:
2020-07-16 18:22:28
阅读次数:
113
input[type=text], select { width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizi ...
分类:
Web程序 时间:
2020-07-16 00:24:12
阅读次数:
86
盒子的模型宽度不是你设置的width的值,根据box-sizing设置的属性决定, 如果为content-box那么元素的宽度为:width+margin+padding+border, 如果设置为border-box那么元素的宽度为:width+border+padding, content-bo ...
分类:
Web程序 时间:
2020-07-15 23:40:47
阅读次数:
74
django模板渲染 模板渲染,模板指的就是html文件,渲染指的就是字符串替换,将模板中的特殊符号替换成相关数据 基本语法 {{ 变量 }} {% 逻辑 %} 变量使用 看示例 Views.py文件 def home(request): class A: def __init__(self): s ...
分类:
其他好文 时间:
2020-07-15 23:19:31
阅读次数:
65
apachectl是Apache HTTP服务器的前端程序,主要用途是帮助管理员控制服务器的后台守护进程 ...
分类:
Web程序 时间:
2020-07-15 01:03:23
阅读次数:
94
1、Master 最好不要写内存快照,如果 Master 写内存快照,save 命令调度 rdbSave 函数,会阻塞主线程的工作,当快照比较大时对性能影响是非常大的,会间断性 暂停服务 2、如果数据比较重要,某个 Slave 开启 AOF 备份数据,策略设置为每秒同步一 3、为了主从复制的速度和连 ...
分类:
其他好文 时间:
2020-07-14 21:53:09
阅读次数:
87
虽然 WeakReference 与 SoftReference 都有利于提高 GC 和 内存的效率, 但是 WeakReference ,一旦失去最后一个强引用,就会被 GC 回收,而软引用 虽然不能阻止被回收,但是可以延迟到 JVM 内存不足的时候。 ...
分类:
编程语言 时间:
2020-07-14 16:19:50
阅读次数:
88