美文网首页
遇到的报错

遇到的报错

作者: hszz | 来源:发表于2021-07-18 22:51 被阅读0次

    git报错 error: failed to push some refs to

    1、先拉下来,会自动合并的(不用操心)
    git pull origin master
    2、再上传
    git push -u origin master
    https://blog.csdn.net/winnershili/article/details/78888548

    退出命令行编辑

    esc :wq 退出不保存
    https://zhidao.baidu.com/question/441713655.html

    解决HbuilderX运行vue项目时中文乱码问题

    把编码格式改为UTF-8
    https://blog.csdn.net/qq_43446007/article/details/108649907

    报错NODE-SASS@4.14.1 POSTINSTALL: NODE SCRIPTS/BUILD.JS

    依赖版本问题
    https://www.freesion.com/article/60181401398/

    远程git仓库地址修改了,本地怎么改

    git remote set-url origin <url>
    其他方法看链接
    

    http://www.bubuko.com/infodetail-3500529.html

    vue报错

    Invalid prop: type check failed for prop "rules". Expected Object, got Array 
    found in
    

    期望rules是对象, 但是得到的是数组
    data中的rules的类型出错

    在hbuildx中1把项目运行在微信开发者工具后,显示Fail to open IDE

    可以先在配置中把appid删除
    https://blog.csdn.net/lyn1772671980/article/details/111255351

    Fatal: cannot do a partial commit during a merge

    git认为有部分代码没有做好提交的准备,比如没有添加

    // 可以执行 
    git commit -m '提交'
    

    https://blog.csdn.net/iefreer/article/details/7697799

    git删除分支报错 error: Cannot delete branch 'xxx' checked out at 'xxxx'

    删除a分支时本身不能在a分支·,需要先切换到其他分支。
    https://blog.csdn.net/weixin_39800144/article/details/101014488

    uniapp中一个页面引入相同组件两次会报错。

    • 在真机运行时,第一个映入的组件会被影响,数据被干扰,显示为undefined。
    • 我当时是两个菜单栏切换内容,都用到相同组件,用v-show控制显示与隐藏(切换时上一个组件没有卸载就切换了),
      换成v-if就好了(组件会被创建与销毁)。
      https://www.h5w3.com/134052.html
      image.png

    相关文章

      网友评论

          本文标题:遇到的报错

          本文链接:https://www.haomeiwen.com/subject/fukzultx.html