想要实现vue动态改变页面title,需要给每个页面设置标题。并且在路由发生变化时修改页面title router - index.js const router = new Router({ mode: 'history', routes: [ { path: '/index', name: 'i ...
分类:
其他好文 时间:
2020-07-16 12:22:20
阅读次数:
82
import numpy as npimport pandas as pdimport matplotlib.pyplot as pltfrom scipy import stats df=pd.read_csv("hfda_ch10_employees.csv")#print(df) y = df ...
分类:
编程语言 时间:
2020-07-16 12:08:59
阅读次数:
80
DRF之JWT补充 1.JWT控制用户登录后才能反问,匿名用户无法访问 class QueryUserView(GenericViewSet, RetrieveModelMixin): """ 查询接口 """ queryset = User.objects.all() serializer_cla ...
分类:
其他好文 时间:
2020-07-16 00:13:27
阅读次数:
71
https://www.zhihu.com/question/64671972 所以,用最简练的语言概括就是: Spring 是一个“引擎”; Spring MVC 是基于Spring的一个 MVC 框架 ; Spring Boot 是基于Spring4的条件注册的一套快速开发整合包。为了简化工作流 ...
分类:
编程语言 时间:
2020-07-16 00:05:18
阅读次数:
65
Part1 Not only did they develop such a device but by the turn of the millennium they had also managed to embed it in a worldwide system accessed by bi ...
分类:
其他好文 时间:
2020-07-16 00:01:44
阅读次数:
163
Navicat Navicat Premium 15 Navicat Premium 是一套多连接数据库开发工具,让你在单一应用程序中同时连接多达七种数据库:MySQL、MariaDB、MongoDB、SQL Server、SQLite、Oracle 和 PostgreSQL,可一次快速方便地访问所 ...
分类:
数据库 时间:
2020-07-15 15:09:45
阅读次数:
93
LeeAaron https://www.cnblogs.com/lialong1st/p/8522240.html 一、adb 查看HDMI信息 1.1、查看支持的分辨率 cat /sys/class/display/HDMI/modes 1.2、查看当前分辨率 cat /sys/class/di ...
分类:
其他好文 时间:
2020-07-15 15:06:36
阅读次数:
51
#Chap 8 提升方法 Boosting 将多个弱的分类器合成为一个强分类器,且各分类器有关联 怎么得到各分类器呢,就是靠不断resample 和 reweighting你的training data 来形成一个新的数据: (source:https://www.youtube.com/watch ...
分类:
其他好文 时间:
2020-07-14 21:41:27
阅读次数:
77
springMvc原理 SpringMvc 围绕一个大的 DispatcherServlet设计 客户端请求提交到DispatcherServlet dispatcherServlet 查询HandlerMapping, 找到请求的Controller Controller 调用接口,返回 Mode ...
分类:
编程语言 时间:
2020-07-14 13:49:56
阅读次数:
55
监控工具:jvisualVM、VisaulVM、jprofiler JVM优化书籍:《Java性能优化权威指南》、《深入理解java虚拟机》 1.年轻代空间不足 2.per Gen(永久代)空间满 3.CMS GC时出现promotion failed和concurrent mode failure ...
分类:
其他好文 时间:
2020-07-14 10:36:50
阅读次数:
187