摘要:
vue could not resolve解决方法 package.json package-lock.json改成正确的文件就好了 最好的方法就是重新新建项目 然后npm install安装 这样保证不会有版本的问题出现 阅读全文
摘要:
python下载视频的方法 you-get pip install you-get 安装 稳的一匹 阅读全文
摘要:
import win32gui, win32ui, win32con, win32api import time # GetDesktopWindow 获得代表整个屏幕的一个窗口(桌面窗口)句柄 hd = win32gui.GetDesktopWindow() # 获取所有子窗口 hwndChild 阅读全文
摘要:
重启php-fpm的方法 netstat -ntlp 找到进城id 然后 kill -9 进城 然后再循环 返回查看进城id 直到php-fpm端口关闭位置 阅读全文
摘要:
vuecli公用node_module的方法 直接软连接 mklink /D "C:\Users\gonnsai0\AppData\Local\Google\Chrome\User Data\Default\Cache" "D:\Chrome\Cache" 就行了 反正这个文件只有读取 不会写入 软 阅读全文
摘要:
from random import randint from PIL import Image class SearchEntry(): def __init__(self, x, y, g_cost, f_cost=0, pre_entry=None): self.x = x self.y = 阅读全文
摘要:
python获取图片中某个像素的坐标 模糊查询 from PIL import Image def zhaose(pic,r1,g1,b1): img = Image.open(pic) pixels = img.load() width, height = img.size xy={}; xy[' 阅读全文
摘要:
-- 测试协程 local thread = require('thread') --处理协程的错误 local thread_id = thread.create(function() nLog('2再运行协程') nLog('这里触发了就会继续切换到主线程 不会因为延迟堵塞') msleep(3 阅读全文
摘要:
local dituxylist={{x=2,y=2},{x=3,y=3}} print(dituxylist[1].x); 对象 数组 阅读全文