上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: .clearfix::after { content:""; display:block; clear:both; } 在浮动元素的父元素上使用 clearfix 类样式 阅读全文
posted @ 2023-12-11 12:09 猝死的路上 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 多行文本超出隐藏并显示省略号 display: -webkit-box; /* 将p标签变成弹性盒子 */ -webkit-line-clamp: 2; /* 最多显示2行 */ -webkit-box-orient: vertical; /* 垂直排列 */ overflow: hidden; / 阅读全文
posted @ 2023-12-11 12:08 猝死的路上 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.去oracle官网下载jdk1.8,需要注册,下载后缀为 .tar.gz,比如 jdk-8u381-linux-x64.tar.gz 2.上传到服务器,解压 建立文件夹,将java安装到指定目录 mkdir -p /home/java8 由于java的安装包解压后默认套了一层,解压后默认会有 j 阅读全文
posted @ 2023-12-11 11:58 猝死的路上 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 中国工商银行ICBC 中国农业银行ABC 中国邮政银行PSBC 中国建设银行CCB 中国银行BOC 交通银行BOCOM DROP TABLE IF EXISTS `bank`; CREATE TABLE `bank` ( `id` int(11) NOT NULL AUTO_INCREMENT, ` 阅读全文
posted @ 2023-12-04 17:05 猝死的路上 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 1.用new -> project from exists source 方式,用 maven 方式导入 2.jfinal2.2使用 8.1.8的jetty server,pom使用 compile <dependency> <groupId>com.jfinal</groupId> <artifa 阅读全文
posted @ 2023-12-04 12:00 猝死的路上 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1.查看提交历史 git log commit 4fe5108e0ca86d439f0da61751fac5845ec64f5c 3 commit 38f9efd1f004996330a78c4b78372ba7c3746989 2 commit 5617205b96685ee157b67f3d66 阅读全文
posted @ 2023-11-07 15:54 猝死的路上 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 以前调试php都是使用 dump 或者 var_dump 来进行,非常不方便,现在可以使用 phpstorm 来进行动态调试,单步跟踪等,可以更快完成任务, 环境为本地是win10,ip地址为 192.168.0.114 服务器使用虚拟机 centos7 ,ip地址为 192.168.115.120 阅读全文
posted @ 2023-11-07 11:52 猝死的路上 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 有自定义功能,但又不想修改原有的api接口,可以添加新的api接口,这样不会很大影响以后的版本升级,具体步骤 1.在 config/routes.php 中添加映射,为了方便维护, 在 $config->routes = $routes; 这一句代码的上面进行添加 //添加的 api $routes 阅读全文
posted @ 2023-11-07 11:13 猝死的路上 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 里面的字段实际上是从 product 模块取的,只需要扩展product的config就可以了 在 extension/custom 新建 product/ext/config/test.php 名字随意 <?php $config->product->search['fields']['extra 阅读全文
posted @ 2023-11-01 18:19 猝死的路上 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 1.数据库表 zt_story 添加自定义字段 extraNumber 2.扩展 module 下的 story 扩展config 在 extension/custom 新建 story/ext/config/test.php (名字随意),内容 <?php $config->story->data 阅读全文
posted @ 2023-11-01 18:16 猝死的路上 阅读(411) 评论(1) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页