问题:The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include' ...
分类:
其他好文 时间:
2020-07-16 21:35:07
阅读次数:
85
all values:会记录所有的统计结果 sample:按间隔采样,隔多长时间采样一次/隔多少个统计点采样一次,减少统计结果收集次数。 bucket:桶采集,与sample相似,按间隔采样。但是它可以获得桶里的最大值、最小值、平均值等,比是sample多了一个二次处理的功能。 glitch rem ...
分类:
Web程序 时间:
2020-07-16 12:30:03
阅读次数:
93
想要实现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