上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 67 下一页
摘要: 一、改导航文字 uni.setNavigationBarTitle({ title: 'xx' }); 二、改tabbar文字 uni.setTabBarItem({ index: 0, text: 'xx' }); 阅读全文
posted @ 2022-01-11 21:36 温柔的风 阅读(514) 评论(0) 推荐(0) 编辑
摘要: 一、标签跳转 官方链接:https://uniapp.dcloud.io/component/navigator <navigator url="navigate/navigate?title=navigate" hover-class="navigator-hover"> <button type 阅读全文
posted @ 2022-01-06 22:05 温柔的风 阅读(4669) 评论(0) 推荐(0) 编辑
摘要: 字符串转数组 let string = "12345,56789" string.split(',') // ['12345','56789'] 数组转字符串 let array = ["123","456"] array.join(",") // "'123','456'" 数组元素删除 let 阅读全文
posted @ 2021-12-26 21:49 温柔的风 阅读(4351) 评论(0) 推荐(0) 编辑
摘要: 报错 Access to XMLHttpRequest at 'http://www.localtest.com/api/api/v1/job/getPositionList' from origin 'http://localhost:8080' has been blocked by CORS 阅读全文
posted @ 2021-12-26 16:02 温柔的风 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 图例 <view class="pt10 flex alcenter"> <view class="ft16 ftw500 text-info">手机号</view> <input class="ml40" maxlength="11" :value="phone" type="text" plac 阅读全文
posted @ 2021-12-17 14:41 温柔的风 阅读(3827) 评论(0) 推荐(0) 编辑
摘要: 需要配置php环境变量。 vim ~/.bash_profile 找到你的php版本安装路径 /opt/homebrew/Cellar/php@7.4/7.4.33_6 //我的路径 添加好之后执行以下命令 source ~/.bash_profile 如果你是在phpstorm里需要运行php - 阅读全文
posted @ 2021-12-04 19:45 温柔的风 阅读(24) 评论(0) 推荐(0) 编辑
摘要: redis单线程又加入了多线程 redis 发展史 redis 2.6 (2012年10月支持lua脚本)redis 3.0 (2015年4月官方集群方案)redis 4.0 (2017年7月混合持久化、多线程异步删除)redis 5.0 (2018年10月核心代码重构)redis 6.0 (202 阅读全文
posted @ 2021-11-12 14:49 温柔的风 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 一、父级属性(容器属性) flex-direction flex-wrap flex-flow justify-content align-items align-content ①:flex-direction属性 (属性决定主轴的方向,即项目的排列方向) .box { flex-directio 阅读全文
posted @ 2021-11-10 11:49 温柔的风 阅读(83) 评论(0) 推荐(0) 编辑
摘要: mysql 三高高并发:同时处理的事务数高高性能:事务/SQL的执行速度高高可用:系统可用的时间高 如何实现三高 高并发:通过复制和扩展,将数据分散至多个节点高性能:复制提升速度,扩展提升容量高可用:节点间身份切换保证随时可用 实现三高的手段复制目的:数据冗余手段:binlog传送收货:并发量提升、 阅读全文
posted @ 2021-11-02 19:29 温柔的风 阅读(1737) 评论(0) 推荐(0) 编辑
摘要: 数据库切换了,业务之前一直连接的都是主库,怎么让业务连接备库呢? 业务切换到新的地址,也就是业务应用配置文件修改一下新的主库 使用内部dns,通过域名连接,一般公司都用CoreDNS框架搭建内部的映射,有对应的域名配置对应的IP解析,所以改的话只改域名映射配置就可以了。这样的好处是项目的配置文件永远 阅读全文
posted @ 2021-11-02 18:53 温柔的风 阅读(1851) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 67 下一页