
日常问题
前端卡卡西呀
前端程序员。面向搜索引擎开发,熟练掌握CV大法的拷贝程序员---前端卡卡西
展开
-
git push报错【remote: You are not allowed to push code to this project.】解决办法
解决git push报错【remote: You are not allowed to push code to this project.】原创 2025-03-07 10:01:29 · 557 阅读 · 0 评论 -
打开新页面el-dropdown不消失 解决方法
打开新页面,el-dropdown不消失的问题及解决办法原创 2025-02-25 10:59:05 · 432 阅读 · 0 评论 -
解决 command not found: brew :Mac安装Brew
解决 command not found: brew :Mac安装Brew原创 2022-06-24 20:35:55 · 6638 阅读 · 2 评论 -
git 本地分支被删除后 如何恢复?(已解决)
恢复 被误删的git分支切回 master 分支,避免影响到当前分支:$ git checkout mastergit relog --data=iso 以标准时间格式展示日志reflog是reference log的意思,也就是引用log,记录HEAD在各个分支上的移动轨迹。$ git reflog --date=iso在 上述操作结果中查找 误删除分支的 commit记录 (如下红框为例)git checkout -b <分支名&g原创 2022-04-01 18:40:26 · 6778 阅读 · 5 评论 -
JSONP请求报错block:mixed-content(已解决)
Mixed Content: The page was loaded over HTTPS,blocked the content must be served over HTTPS问题描述开发环境 调用接口 正常,发布到测试环境时,调用接口提示 “block:mixed-content”问题原因浏览器不允许在https页面里嵌入http的请求开发环境是本地起的http服务,发到测试环境时是 https,而调用的接口地址是固定的 http接口,导致测试环境报错。解决问题方法1.如果该接口支持原创 2022-03-11 15:29:27 · 1679 阅读 · 0 评论 -
Props with type Object/Array must use a factory function to return the default value.
问题描述:报错:Props with type Object/Array must use a factory function to return the default value.使用 prop 进行父子组件传值时,设置了默认值(如下),导致报上边的错props: { actData: { type: Object, default: {}, },},报错原因翻译报错信息:props default 数组/对象的默认值应当由一个工厂函数返回解决原创 2021-10-29 09:49:14 · 11328 阅读 · 1 评论