可以用deGetAllViewTypes()来获取。 "graphic" "layout" "maskLayout" "schematic" "schematicSymbol" "netlist" "verilogMap" "netlist.v" "vsdpSparamModel" "vsdpSpi ...
分类:
其他好文 时间:
2020-06-21 09:53:25
阅读次数:
163
检查 MySQL 是否开启了慢日志。 show variables like 'slow_query_log'; 返回 代表没有开启慢日志 编辑MySQL配置文件 vim /etc/mysql/mysql.conf log_output=file slow_query_log=on slow_que ...
分类:
数据库 时间:
2020-06-21 09:40:49
阅读次数:
73
1.设置是否已经登录的验证 1.在newapp/pages/center/center.vue中: <template> <view class="content"> </view> </template> <script> export default { data() { return { } ...
分类:
移动开发 时间:
2020-06-21 09:34:14
阅读次数:
62
创建一个类并使其实现接口HandlerInterceptor 接口提供了一个请求的三个周期的拦截方法 在controller之前,返回true则放行,false反之,handler包含处理请求的controller类以及其方法 boolean preHandle(HttpServletRequest ...
分类:
编程语言 时间:
2020-06-21 00:33:03
阅读次数:
61
本文通过 WPF 的数据触发器 (DataTrigger) 和多重绑定 (MultiBinding),在一组普通按钮 (Button) 上实现了像单选按钮 (RadioButton) 那样的,同一时间只有一个按钮具有当前样式(本文演示的是背景颜色)的效果。 ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
其他好文 时间:
2020-06-20 16:16:38
阅读次数:
54
springboot日志简介 SpringBoot使用的日志是sl4j + logback,sl4j是抽象层,不做具体的实现。实现主要是logback来做。SpringBoot同时也整合了其他框架的日志jar包,像spring 的commons-logging被jcl-over-sl4j代替了,lo ...
分类:
编程语言 时间:
2020-06-20 15:48:06
阅读次数:
63
新建utils/exceptions.py from rest_framework.views import exception_handler from django.db import DatabaseError from rest_framework.response import Respo ...
分类:
编程语言 时间:
2020-06-20 11:11:43
阅读次数:
75
<s-spu-scroll class="spu-scroll"></s-spu-scroll> 自定义组件(s-spu-scroll)无法应用样式类(spu-scroll) <scroll-view class="scroll-view"></scroll-view> 内置组件可以应用样式类(sc ...
分类:
其他好文 时间:
2020-06-20 11:03:51
阅读次数:
30
1 def sum_func(*args): 2 total=0 3 for i in args: 4 return total 5 print(sum_func(1,2,3,8,23,6)) View Code ...
分类:
其他好文 时间:
2020-06-20 00:46:34
阅读次数:
172