size(X, 1); X=5000*400 size(X, 1) = 5000 取行 size(X,2) = 400 取列 ...
分类:
其他好文 时间:
2018-08-19 13:58:34
阅读次数:
483
问题:XMLHttpRequest cannot load http://192.168.1.4:9010//api/contacts. The 'Access-Control-Allow-Origin' header contains the invalid value '1'. Origin ' ...
<form action=”” method=”” enctype=””> Action:对应的服务器的地址 Method:客户端和服务器的连接方式,主要的连接方式有get和post两种。默认是get连接 Enctype:设置form表单提交数据的编码规则,默认是application/x-www- ...
分类:
其他好文 时间:
2018-08-19 13:58:19
阅读次数:
148
Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as follows: The left subtree of a node contains only ...
分类:
其他好文 时间:
2018-08-19 13:58:11
阅读次数:
130
目录结构: Web25\ |—css\ reset.css、common.css、index.css、login.css、reg.css |—js\ jquery-3.3.1.js、index.js、login.js、reg.js |—index.html、course.html、pay.html、 ...
分类:
Web程序 时间:
2018-08-19 13:57:50
阅读次数:
607
Given preorder and inorder traversal of a tree, construct the binary tree. Note:You may assume that duplicates do not exist in the tree. For example, ...
分类:
其他好文 时间:
2018-08-19 13:57:40
阅读次数:
107
Jmeter断言 断言就是自动检测返回结果是否正确,要校验某个请求的返回结果就在该请求下加断言 1、先写好http请求 2、 然后在该http请求下添加响应断言 3、查看校验结果 匹配值为‘小黑’时,因为请求返回结果中包括‘小黑’,查看结果树正常 将匹配值改为‘小白’,则查看结果树会报错 ...
分类:
其他好文 时间:
2018-08-19 13:57:31
阅读次数:
128
Elementui 导航组件和Vuejs路由结合, 达到点击导航切换路由,根据路由定位导航 一下是nav.vue代码,导航数据以json格式配置 ...
分类:
Web程序 时间:
2018-08-19 13:57:24
阅读次数:
357
#-*- coding:utf8-*-#读取图片'''1.cv2.imread(文件名,属性) 属性:指定图像用哪一种方式读取文件 cv2.IMREAD_COLOR:读入彩色图像,默认参数,Opencv 读取彩色图像为BGR模式 !!!注意 cv2.IMREAD_GRAYSCALE:读入灰度图像。2 ...
分类:
其他好文 时间:
2018-08-19 13:57:15
阅读次数:
193
转:javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure 解决方案javax.net.ssl.SSLHandshakeException: Received fatal alert: handshak ...
分类:
编程语言 时间:
2018-08-19 13:57:06
阅读次数:
186
Linux删除文件夹命令 删除目录、文件 rm(remove) 功能说明:删除文件或目录。语 法:rm [-dfirv][--help][--version][文件或目录...]补充说明:执行rm指令可删除文件或目录,如欲删除目录必须加上参数”-r”,否则预设仅会删除文件。 参 数: -d或–dir ...
分类:
系统相关 时间:
2018-08-19 13:56:52
阅读次数:
185
1.第一次试验:朴素贝叶斯,采用统计词数量方式处理数据conutVectorizer() (1)训练集12695条, 正向:8274 负向:4221 哈工大停词表:df=3,正确率0.899, df=1,正确率0.9015 四川大学停词表:df=1,正确率0.90035 (2)训练集19106条 正 ...
分类:
编程语言 时间:
2018-08-19 13:56:44
阅读次数:
140
JavaScript在浏览器中把文本保存为文件的方法 经过测试第二种方法可以保存更多的文本不至于卡死 ...
分类:
编程语言 时间:
2018-08-19 13:56:34
阅读次数:
139
1.创建SpringBoot项目 2.pom.xml添加JPA依赖,数据库MySQL依赖包 3.在src/main/resouces配置application.properties server.port: 9998 debug:true #PRODUCTIONspring.datasource.u ...
分类:
编程语言 时间:
2018-08-19 13:56:26
阅读次数:
165
首先,服务器配置dhcp 关闭火墙yum install dhcp -ycd /etc/dhcpcp /usr/share/doc/dhcp-4.2.5/dhcpd.conf.example dhcpd.confvim dhcpd.conf systemctl restart dhcpd 测试拔掉网 ...
分类:
系统相关 时间:
2018-08-19 13:56:12
阅读次数:
191
1 #“hello %s”与%name之间不能加逗号 2 def hi(name): 3 print("hello %s" %name) 4 5 #“hello”与name之间加逗号 6 def hi(name): 7 print("hello " ,name) ...
分类:
编程语言 时间:
2018-08-19 13:55:59
阅读次数:
164
长字符串 原始字符串 取消字符的特殊意义 字符串拼接 1、通过+连接 2、join()方法 字符串切片、截取 语法 字符串常用方法 str.strip() str.lstrip()、str.rstrip() str.count() ...
分类:
编程语言 时间:
2018-08-19 13:55:49
阅读次数:
146