04 2021 档案
摘要:1. 生成密钥文件 2.找到控制台 输入指令 cd c: cd C:\Users\【当前登录的用户文件夹】\.android 如 cd C:\Users\cenxi\.android 就是这里 然后输入指令 keytool -list -v -keystore 【密钥文件路径】 如 keytool
阅读全文
摘要:1.前言 idea 用惯了 Lombok 插件了,好用的很,可是开发安卓 却没有,即便在 android studio 安装了插件,但是仍然无法使用 因为需要配置 这是旧版as的配置,新版本看我这篇随笔 https://www.cnblogs.com/c2g5201314/p/16441514.ht
阅读全文
摘要:1.前言 background-color: #fc1717bf; 这个样式属性没毛病吧,浏览器都是支持的,但是在android 7.0 系统无法正确识别这个含有透明度的属性, 即bf无法识别,将默认为透明,但是可以识别 #fc1717部分 怎么办? 2.解决 用 RGB格式写 如 backgrou
阅读全文
摘要:ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:30.+.
阅读全文
摘要:1.出现这个情况 2. 进入设置,找到 去掉勾选即可
阅读全文
摘要:js文件 只有一个 food 类,一般写 export {food} 或者 export {food as default} 那么如果有多个呢? 这样 export {food, food2} 或者 export {food as default, food2} 或 export {food , f
阅读全文
摘要:1.目录结构 2.类语法与导出 class food { } //定义常量 let c = "苹果"; //正确的函数写法 food.prototype.getfood = function (str) { if (!str) { return "吃" + this.g; } return "吃"
阅读全文
摘要:1.前言 静态页面 加载 <script type="module" > 报CORS 跨域错误,提示Access to script at ftp:///xxx.js from origin 'null' has been blocked by CORS policy: Cross origin r
阅读全文
摘要:看看这个 location /css/ { alias D:/我的项目/2-代码/express/src/main/resources/static/css/ ; } 咋一看貌似没有毛病,访问 http://ip:端口/html/pc/css/kk.css 正常访问 但是 访问 http://ip:
阅读全文
摘要:怎么解决? 把原来的指令 $ git clone https://github.com/cen-xi/express.git 改成 $ git clone git://github.com/cen-xi/express.git 就行
阅读全文