本站点主要记录在日常工作开发中的问题以及功能实现
button 配合 document.execCommand() 实现文字加粗效果。在实现富文本编辑器的点击按钮给文本文字加粗的时候遇到了一个问题,那就是当选中文字是点击加粗按钮会取消文字的选中。想要的效果为:想要实现此效果,只要将按钮换成 button 就可以了。完整代码:<style> * { padding: 0; margin: 0; } html, body { padding: 20px; background-color: #000000; } li { list-style-type: none; } #editor { width: 800px; height: 360px; border-radius: 6px; background-color: #ffffff; border: 1px solid #cccccc;
1.清华大学https://pypi.tuna.tsinghua.edu.cn/simple2.阿里云https://mirrors.aliyun.com/pypi/simple/3.网易https://mirrors.163.com/pypi/simple/ 4.豆瓣https://pypi.douban.com/simple/5.百度云https://mirror.baidu.com/pypi/simple/6.中科大https://pypi.mirrors.ustc.edu.cn/simple/7.华为云https://mirrors.huaweicloud.com/repository/pypi/simple/8.腾讯云https://mirrors.cloud.tencent.com/pypi/simple/参考链接:https://zhuanlan.zhihu.com/p/623325525?utm_id=0
python安装cv2 时报错:ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2解决方法:cv2库是OpenCV的Python绑定库,它通常通过以下方式安装:pip install opencv-python
偶然间看到一个效果,觉得挺有意思就看了下是如何实现的,以下是效果展示。效果地址查看css,其主要是通过 background-attachment 属性来实现滚顶页面背景背景图片固定效果的。实现代码:<div style="height: 600px;"></div> <div style="height: 600px;"></div> <div class="box"></div> <div style="height: 600px;"></div> <div style="height: 600px;"></div> <style> .box { width: 1200px; height: 460px; margin: 0 auto; background-image: url(https://www.nicetheme.cn/wp-
在使用 vite 搭建 vue3 项目时启动报错:解决方案:主要是 IP Helper服务未正常启动,只要重新启动IP Helper服务就可以了。通过 net stop winnat 停止 windows网络地址转换(NAT)服务,而net start winnat命令可以启动该服务。这些命令会间接地启动IP Helper服务,从而解决“Error: listen EACCES: permission denied ::1:5173”报错。net stop winnat net start winnat
if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-e $request_filename){ rewrite (.*) /index.php; }
1.开启手机开发者模式2.进入开发者选项 -> 显示布局边界
在使用 git 进行 commit 时出现错误:husky - pre-commit hook exited with code 1 (error)。方式一chatgpt 的回答是:报错信息 “husky - pre-commit hook exited with code 1 (error)” 表示在执行 Git 提交操作时,pre-commit 钩子脚本返回了非零的退出码,表示出现了错误。这种情况下,通常是由于 pre-commit 钩子脚本中的某些检查或校验操作失败导致的。这些操作可能包括代码风格检查、静态代码分析、单元测试等。当脚本返回非零退出码时,Git 就会拒绝提交并报错。处理这个问题的步骤如下:了解错误信息:查看报错信息中的详细信息,可能会给出有关导致错误的具体原因。检查钩子脚本:查看项目中的 pre-commit 钩子脚本,并确认其中的检查或校验操作是否有问题。可以尝试运行钩子脚本来单独测试和调试。修复问题:根据钩子脚本的具体错误信息,修复其中的问题。可能需要修改代码、调整配置或安装必要的依赖项。绕过钩子脚本:如果在紧急情况下需要提交代码,可以使用 git commit
const webSearchPrompt = ` Using the provided web search results, write a comprehensive reply to the given query. If the provided search results refer to multiple subjects with the same name, write separate answers for each subject. Make sure to cite results using \`[[number](URL)]\` notation after the reference. Web search json results: """ ${JSON.stringify(searchResult)} """ Current date: """ ${new Date().toISOString()} """ Query: &
登录docker login打包docker build -t [docker_username]/[image_name]:[tag] .推送docker push [docker_username]/[image_name]:[tag]退出登录指令docker logout
a
不过是些许风霜罢了