Live2D
摘要: 修改Maven安装目录下/conf/settings.xml文件 找到在这里面 加入国内镜像源·华为云和阿里云提供的镜像 <mirror> <id>HuaweiCloud</id> <mirrorOf>*,!HuaweiCloudSDK</mirrorOf> <url>https://mirrors 阅读全文
posted @ 2020-08-16 17:40 墨雪染殇 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 详情参考我的Gitee博客 博客地址:https://gitee.com/jiangxianfly/cnblogs-theme 阅读全文
posted @ 2020-08-05 22:06 墨雪染殇 阅读(92) 评论(0) 推荐(1) 编辑
摘要: 原因: 由于某些原因,国内访问Github有时会异常缓慢,通过修改系统hosts文件的办法,绕过国内dns解析,直接访问GitHub的CDN节点,从而达到加速的目的。该方法也可加速其他因为CDN被屏蔽导致访问慢的网站。 实现: 本地host文件中添加映射,步骤如下: 1、打开hosts文件:C:\W 阅读全文
posted @ 2020-06-27 10:56 墨雪染殇 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 本地仓库更新.gitignore 后生效方法,懒得每次网上查,于是记录到自己的博客。 1 git rm -r --cached . # 清除缓存 2 git add . # 追踪文件 3 git commit -m "更新.gitignore" # 注释提交 4 git push origin ma 阅读全文
posted @ 2020-06-20 11:55 墨雪染殇 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 一、数组的解构赋值 // 基本赋值 let [a,b,c]=["q","w","e"]; console.log(a,b,c);//q w e // 嵌套结构 let [fruits,[apple,banana,pear],vegetables]=["水果",["苹果","香蕉","梨"],"蔬菜" 阅读全文
posted @ 2020-06-06 14:42 墨雪染殇 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 在使用avue表单时,若想在表单中进行数据请求时,可以使用下面的方法: { label: "补贴类型", prop: "sub_type_msg", search: true, type: "select", dicUrl: "/admin/hadoop/not_auth/subType", dic 阅读全文
posted @ 2020-06-05 14:40 墨雪染殇 阅读(7475) 评论(1) 推荐(0) 编辑