
error
TATOQOQ
好记性不如烂笔头
展开
-
github clone报错fatal:unable toxxx
git clone github他人项目时候(自己的没试过)解决办法:1.点击github上头像下面的settings 2.点击左侧最下面的developer settings3. 点击最后一条personal access tokens4.点击generate new token 5.Note起个名字 填写下多久过期 我一般选No expiration 6.勾选repo 其他选项按照个人需要 7.点击最下面的generate token 8.跳转回去 绿色里面就是token了 复制 9.回到本地终端内加原创 2022-06-30 14:08:34 · 374 阅读 · 0 评论 -
uni-app踩坑H5移动端踩坑---fixed的button按钮被popup遮挡
问题:H5页面开发完,在pc端移动页面测试没有问题,但ios手机上弹出层把button盖住了。解决方法:把遮罩层popup等弹出界面的代码放到了代码最后。原创 2022-05-31 13:32:38 · 912 阅读 · 0 评论 -
电视开vue项目缓存无法清除
index页面添加<meta http-equiv="pragram" content="no-cache"><meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">原创 2022-02-17 09:59:31 · 337 阅读 · 0 评论 -
windows中redis-server起不来
报错:Creating Server TCP listening socket *:6379: bind: No such file or directory解决方案:1.点击 -> redis-cli.exe2.敲入shutdown3.敲入exit4.点击 -> redis-server.exe转载 2021-12-01 09:39:57 · 304 阅读 · 0 评论 -
[Python]:IndentationError: unexpected indent
python代码报错IndentationError: unexpected indent缩进错误:意外缩进Indentation[ˌɪndenˈteɪʃn] n.缺口;凹陷;凹痕;行首缩进;行首空格;造成凹陷(或缺口);将行首缩进indent[ɪnˈdent , ˈɪndent] v.将(印刷或书写的行)缩进,缩格,缩排 n.订单;订购unexpected[ˌʌnɪkˈspektɪd] adj.出乎意料的;始料不及的解决办法:检查缩进,该缩进的...原创 2021-07-05 09:53:30 · 255 阅读 · 0 评论 -
微信小程序: app.wxss中引入weui.wxss提示not found...
错误信息:File not found: 'weui-miniprogram/weui-wxss/dist/style/weui.wxss';学习小程序的过程中想尝试一下weui,按照官方文档“快速上手”进行操作。官方建议通过通过useExtendedLib 扩展库的方式引入,但我没有。还是习惯性的通过npm,执行了npm install weui-miniprogram --save当然用npm之前,确定本地项目中使用了node.js。通过微信开发者工具里,构建npm,项目勾...原创 2021-02-20 16:59:30 · 4693 阅读 · 1 评论 -
Vue.js-ElementUI-自定义主题
Vue.js-ElementUI-自定义主题在线主题编辑器在线主题编辑器下载自己修改过的主题后,解压style.zip。1.将theme文件夹添加到项目。2.在main.js里添加import ‘theme/index.css’,具体路径根据项目更改。原创 2020-08-05 15:21:12 · 187 阅读 · 0 评论 -
ERROR This dependency was not found:
ERROR Failed to compile with 1 errorsThis dependency was not found:* theme/index.css in ./src/main.jsTo install it, you can run: npm install --save theme/index.css解决办法:修改build ---> webpack.base.conf.js ---> resolveresolve:{e...原创 2020-08-05 15:11:25 · 346 阅读 · 0 评论