摘要: # 远程拉取文件到本地 scp name@192.168.xx.xx:远程路径 本地路径 # 本地到远程传输文件 scp 本地路径 name@192.168.xx.xx:远程路径 利用scp传输文件 1、从服务器下载文件 scp username@servername:/path/filename 阅读全文
posted @ 2018-12-14 22:41 vekair 阅读(169) 评论(0) 推荐(0)
摘要: from requests.packages.urllib3.exceptions import InsecureRequestWarning# 禁用安全请求警告requests.packages.urllib3.disable_warnings(InsecureRequestWarning) 阅读全文
posted @ 2018-12-14 13:47 vekair 阅读(368) 评论(0) 推荐(0)
摘要: // 这个是监听浏览器回退键的returnButton () { let vm = this; $(document).ready(function () { if (window.history && window.history.pushState) { $(window).on('popsta 阅读全文
posted @ 2018-12-14 10:31 vekair 阅读(13811) 评论(0) 推荐(0)