Happy New Year!
上一页 1 2 3 4 5 6 7 ··· 37 下一页
摘要: // 在 subNVue/vue 页面注册事件监听方法 // $on(eventName, callback) uni.$on('page-popup', (data) => { vm.title = data.title; vm.content = data.content; }) // 在 su 阅读全文
posted @ 2022-02-25 14:03 义美-小义 阅读(55) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <title>js鼠标移动事件案例</title> </head> <style type="text/css"> *{margin:0;padding: 0;} #b 阅读全文
posted @ 2022-02-24 16:36 义美-小义 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 基本用法:进入要运行的py文件目录前 nohup python -u test.py > test.log 2>&1 & //打印日志 nohup xxxx >/dev/null 2>&1 & //不打印日志 含义解释:nohup 不挂起的意思 python test.py python运行test 阅读全文
posted @ 2022-02-14 09:33 义美-小义 阅读(774) 评论(0) 推荐(0) 编辑
摘要: 爬虫的编程语言有不少,但 Python 绝对是其中的主流之一。下面就为大家介绍下 Python 在编写网络爬虫常常用到的一些库。 请求库:实现 HTTP 请求操作 urllib:一系列用于操作URL的功能。 requests:基于 urllib 编写的,阻塞式 HTTP 请求库,发出一个请求,一直等 阅读全文
posted @ 2022-02-11 21:09 义美-小义 阅读(240) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- """ 压缩和解压缩zip文件 time:2018-08-13 """ import zipfile import os def create_zip(path): """创建一个压缩文件""" # 创建一个 阅读全文
posted @ 2022-01-16 10:27 义美-小义 阅读(250) 评论(0) 推荐(0) 编辑
摘要: // 下载导入错误数据 function downloadErrorFile(){ adminFileDownload({ path: this.errorFilePath, name: '导入错误数据' }).then(res => {//请求接口 需要替换 var blob = new Blob 阅读全文
posted @ 2022-01-05 15:36 义美-小义 阅读(959) 评论(0) 推荐(0) 编辑
摘要: #crontab -l 查看定时任务 #crontab -e 编辑定时任务 0 0 * * * /usr/bin/curl http://www.baidu.com/your/task.html # /sbin/service crond restart 重启定时任务 若提示command not 阅读全文
posted @ 2021-12-31 17:42 义美-小义 阅读(357) 评论(0) 推荐(0) 编辑
摘要: var i; console.time("for 循环测试"); for (i = 0; i < 100000; i++) { // 代码部分 } console.timeEnd("for 循环测试"); i = 0; console.time("while 循环测试"); while (i < 1 阅读全文
posted @ 2021-12-31 17:02 义美-小义 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 查看进程: netstat -tln 命令: sudo fuser -k -n tcp 80 注意:80为端口号,可以根据 自己实际需求修改 注意 这个是可以强制结束 比 kill 还好用 阅读全文
posted @ 2021-12-31 15:28 义美-小义 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 根据web连接服务的原理,我们可以通过一台电脑连接我们另一台电脑上的数据库 一、开启数据库的权限1.Mysql:1)修改访问权限首先修改可以访问的ip,把‘localhost’全部修改为‘%’,打开cmd,使用指令【mysql -u root -p】,进入数据库,其中root是MySQL的用户名,默 阅读全文
posted @ 2021-12-31 13:36 义美-小义 阅读(1321) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 37 下一页
返回顶部小火箭
世界很公平,想要最好,就一定得付出!
x
github主页