随笔分类 -  遇到的问题

摘要:问题:官方文档浏览速度慢。 1. 下载 https://threejs.org/ 官网首页左侧,点击“download”下载 2. 得到压缩包:three.js-master.zip 解压到本地 3. 部署 用VS Code打开解压后的文件夹运行命令 : npm install 运行命令: npm 阅读全文
posted @ 2024-10-13 11:21 JaceyKan 阅读(329) 评论(0) 推荐(0) 编辑
摘要:Python编程:从入门到实践(2)第18章-从Django入手 执行命令 python manage.py makemigrations learning_logs 时报错,如图: 问题原因:learning_logs 错写成 learning logs 正确代码如下: INSTALLED_APP 阅读全文
posted @ 2024-05-05 21:58 JaceyKan 阅读(88) 评论(0) 推荐(0) 编辑
摘要:转载自:https://blog.csdn.net/zpf1813763637/article/details/128340109 两种情况: 第一种情况自己有vpn,网页可以打开github。说明命令行在拉取/推送代码时并没有使用vpn进行代理 第二种情况没有vpn,这时可以去某些网站上找一些代理 阅读全文
posted @ 2024-01-31 15:04 JaceyKan 阅读(5361) 评论(0) 推荐(1) 编辑
摘要:Chrome控制台Network,如何批量搜索 Response 的内容? 假设左边的URL非常非常多--> 依次点击每个URL ,再对这一个URL的 Response 进行搜索 这样做效率太低,有没有办法在 所有URL 的Response 里面批量搜索呢? 说个不是办法的办法:1、保存为har(S 阅读全文
posted @ 2021-12-29 15:21 JaceyKan 阅读(1304) 评论(0) 推荐(0) 编辑
摘要:遇到的问题: win10下 npm install 时报错,提示: Error while executing:npm ERR! D:\programfiles\Git\cmd\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git fa 阅读全文
posted @ 2021-11-07 16:37 JaceyKan 阅读(17579) 评论(1) 推荐(0) 编辑
摘要:转载自:https://blog.csdn.net/ougexingfuba/article/details/104056327 1.win+s 搜索powershell 以管理身份运行 2.使用set-ExecutionPolicy RemoteSigned命令将计算机上的执行策略更改为 Remo 阅读全文
posted @ 2021-11-07 11:31 JaceyKan 阅读(540) 评论(0) 推荐(0) 编辑
摘要:原文链接: https://blog.csdn.net/wd2014610/article/details/80854807 Git的报错 在使用Git的过程中有时会出现一些问题,那么在解决了每个问题的时候,都需要去总结记录下来,下次不再犯。 一、fatal: refusing to merge u 阅读全文
posted @ 2020-12-23 11:11 JaceyKan 阅读(787) 评论(0) 推荐(0) 编辑
摘要:安装selenium-webdriver npm i selenium-webdriver 当前安装版本: "selenium-webdriver": "^4.0.0-alpha.7" 运行代码:node baidu.js baidu.js: var webdriver = require("sel 阅读全文
posted @ 2020-11-27 16:14 JaceyKan 阅读(1476) 评论(1) 推荐(0) 编辑
摘要:安装 Ant Design Vue 时报错: npm install ant-design-vue --save ant-design-vue @ latest(sha1-qsf / gCIFcRYxyGmOKgx7TmHf1z4 =)的npm WARN tarball tarball数据似乎已损坏 阅读全文
posted @ 2020-11-25 17:48 JaceyKan 阅读(3186) 评论(0) 推荐(0) 编辑
摘要:运行npm run dev遇到的问题:Error: Cannot find module 'webpack-cli/bin/config-yargs' // 当前package.json 文件 ​ "devDependencies": { "webpack": "^5.2.0", "webpack- 阅读全文
posted @ 2020-10-23 15:34 JaceyKan 阅读(40546) 评论(7) 推荐(17) 编辑
摘要:问题: mongoose 更新数据时不验证数据(忽略设定的集合规则)的问题 参考: http://www.mongoosejs.net/docs/api.html#updateone_updateOne https://mongoosejs.com/docs/validation.html#upda 阅读全文
posted @ 2020-09-02 20:03 JaceyKan 阅读(421) 评论(0) 推荐(0) 编辑
摘要:参考:mongoose报错:DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead mongoose报错:(node:9716)DeprecationWarning: collection 阅读全文
posted @ 2020-08-29 11:07 JaceyKan 阅读(400) 评论(0) 推荐(0) 编辑
摘要:MongoDB使用命令创建用户权错误分析 错误一:权限不够Error:couldn't add user:command createUser requires authentication、 解决方案:先使用超级管理员登录,再进行其他数据库用户创建的创建。 阅读全文
posted @ 2020-08-28 18:02 JaceyKan 阅读(12026) 评论(1) 推荐(0) 编辑
摘要:参考:https://blog.csdn.net/qq_40659195/article/details/88411838 最近尝试用Node写一个小案例,使用到了MongoDB,使用过的人可以知道,Node-js操作MongoDB的官方包实在有些麻烦,为了方便开发,使用了mongoose这样的一个 阅读全文
posted @ 2020-08-25 16:23 JaceyKan 阅读(922) 评论(1) 推荐(0) 编辑
摘要:遇到的问题 参考:mongo中时间跟实际时间相差8小时 Mongo中一个Collection有一个字段用来存放数据的插入时间,但记录的时间比实际时间晚了8小时。 查询得知存储在mongodb中的时间是标准时间UTC +0:00,而中国时区是+8.00, 请问有什么办法保证Collection中的插入 阅读全文
posted @ 2020-08-18 11:57 JaceyKan 阅读(12587) 评论(0) 推荐(0) 编辑
摘要:问题: net start mongodb 提示:发生系统错误 5,拒绝访问。 无法启动mongodb 服务。 解决办法: 右键cmd,选择以管理员身份运行即可 阅读全文
posted @ 2020-07-30 17:53 JaceyKan 阅读(1746) 评论(0) 推荐(0) 编辑
摘要:原文: https://feiffy.cc/uncaught-typeerror-cannot-convert-object-to-primitive-value 最近发现我的博客页面移动端上下拉菜单失效了,调试了一下,只要一点击下拉菜单就会报这个错误: 下拉菜单使用 bootstrap,部分代码如 阅读全文
posted @ 2020-07-11 17:15 JaceyKan 阅读(1276) 评论(0) 推荐(0) 编辑
摘要:问题: 我在VirtualBox下搭建的win7系统只设置了一个C盘,当初只给硬盘分配32G,如今深受生活的毒打,发现只剩5G可用,装个PS都费劲。 我要扩容,扩容! 当前环境: VirtualBox 6.1.4 windows 7 参考文档: 增大VirtualBox虚拟硬盘容量 实际操作: 选要 阅读全文
posted @ 2020-05-29 01:13 JaceyKan 阅读(864) 评论(0) 推荐(0) 编辑
摘要:在webstorm配置的SASS,插入中文注释报错: cmd.exe /D /C call D:\ProgramFiles\Ruby24-x64\bin\sass.bat --no-cache --update love.scss:D:\2018Learning\MaterialLibrary\CS 阅读全文
posted @ 2018-10-30 22:51 JaceyKan 阅读(690) 评论(0) 推荐(0) 编辑
摘要:启动xampp出错,Port 80 in use by "Unable to open process" with PID 4! 环境:windows10 80端口被PID为4的应用占用。 参考文章:win10端口被占用如何查看 解决方法: 参考: XAMPP - Port 80 in use by 阅读全文
posted @ 2018-05-09 20:47 JaceyKan 阅读(5391) 评论(1) 推荐(1) 编辑

点击右上角即可分享
微信分享提示