摘自 :https://blog.csdn.net/ssdnif/article/details/103856283 官方提供的配置<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> < ...
分类:
其他好文 时间:
2020-06-18 10:32:24
阅读次数:
48
window.history.go(-1); //返回上一页 window.history.back(); //返回上一页 window.location.go(-1); //刷新上一页 window.history.back();location.reload();//强行刷新(返回上一页刷新页面 ...
分类:
编程语言 时间:
2020-06-16 18:36:10
阅读次数:
220
一、 整个测试框架只要分为6部分,分别是:python安装、easy_install安装、pip安装、Robotframework安装、wxpython安装、ride的安装。 二、 Python安装 目前robotframework 整个测试框架支持Python2和Python3的安装,根据个人要求 ...
分类:
其他好文 时间:
2020-06-16 18:26:32
阅读次数:
68
hash vue-router 默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。 URL:http://www.abc.com/#/hello, hash 的值为#/hello 。 hash 虽然出现URL中,但不会被包含在 ...
分类:
其他好文 时间:
2020-06-15 17:48:58
阅读次数:
52
router-link 不带参数 <router-link :to="{name:'home'}"> <router-link :to="{path:'/home'}"> //name,path都行, 建议用name // 注意:router-link中链接如果是'/'开始就是从根路由开始,如果开始 ...
分类:
其他好文 时间:
2020-06-15 17:42:24
阅读次数:
62
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_categorical 训练集测试集划分 ...
分类:
其他好文 时间:
2020-06-14 16:52:22
阅读次数:
84
During my time with Zotero, I've really enjoyed its various features and the 300MB of file sync space is able to be extended by modifying the path to ...
1、修改/root/.bash_profilevim.bash_profile在文件末尾加上HISTTIMEFORMAT="%F%T"2、重新读取文件source.bash_profile3、验证
分类:
其他好文 时间:
2020-06-14 10:46:14
阅读次数:
70
getwd() >显示当前的工作目录 setwd('xxx') >获取当前的工作目录 savehistory('xxx') >以文件名为xxx保存在工作空间 loadhistory('xxx') >加载文件名为xxx的历史命令记录 history(x) >加载最近的历史命令x个 ls() >展现工作 ...
分类:
其他好文 时间:
2020-06-13 23:43:05
阅读次数:
101
#概述 当执行命令后,系统默认会在内存记录执行过的命令 当用户正常退出时,会将内存的命令历史存放对应历史文件中,默认是~/.bash_history 登录shell时,会读取命令历史文件中记录下的命令加载到内存中 登录进shell后新执行的命令只会记录在内存的缓存区中;这些命令会用户正常退出时“追加 ...
分类:
系统相关 时间:
2020-06-13 23:34:08
阅读次数:
94