上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 89 下一页

2020年6月16日

子组件向父组件中传递事件、数据

摘要: 举一个计算器的小例子: <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <!--父组件模板--> <div id="app"> <child-cpn @incr 阅读全文

posted @ 2020-06-16 22:31 ~码铃薯~ 阅读(1027) 评论(0) 推荐(0)

#Linux 系统管理命令 | top命令

摘要: #Linux 系统管理命令 命令 说明 stat 显示指定文件的相关信息,比ls命令显示内容更多 who 显示在线登录用户 hostname 显示主机名称 uname 显示系统信息 top 显示当前系统中耗费资源最多的进程 ps 显示瞬间的进程状态 du 显示指定的文件(目录)已使用的磁盘空间的总量 阅读全文

posted @ 2020-06-16 22:09 ~码铃薯~ 阅读(172) 评论(0) 推荐(0)

Linux 操作文件目录

摘要: Linux 操作文件目录 常用命令的讲解; Ls 显示文件和目录列表 命令 说明 语法 参数 参数说明 ls 显示文件和目录列表 ls [-alrtAFR] [name...] -l 列出文件的详细信息 -a 列出当前目录所有文件,包含隐藏文件 mkdir 创建目录 mkdir [-p] dirNa 阅读全文

posted @ 2020-06-16 20:38 ~码铃薯~ 阅读(171) 评论(0) 推荐(0)

linux系统基本目录的介绍

摘要: IaaS基础设置及服务 PaaS平台即服务 SaaS软件即服务 这三块合起来就叫做云计算。 现在自己Ubuntu服务器的用户名和密码是:zyq 123456 Linux简单的介绍: Linux系统没有像windows那种盘符的概念,只有挂载的概念。Linux的根目录是/。linux没有盘符的概念,只 阅读全文

posted @ 2020-06-16 20:27 ~码铃薯~ 阅读(170) 评论(0) 推荐(0)

vue 组件之间的通信-父组件给子组件传递数据

摘要: 下面是一个父组件给子组件传递数据的例子: <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script src="../js/vue.js"></script 阅读全文

posted @ 2020-06-16 09:50 ~码铃薯~ 阅读(150) 评论(0) 推荐(0)

2020年6月12日

postgresql数据库查询特定日期的数据

摘要: select * from t_member_score_detail where score_type is null and to_char(insert_time,'yyyy-mm-dd')='2019-10-10'; 阅读全文

posted @ 2020-06-12 11:14 ~码铃薯~ 阅读(3457) 评论(0) 推荐(0)

使用HttpRequest调用第三方接口

摘要: 下面是代码片段: String regResponse=""; String sendStr="{\n" + " \"codeFlag\": \"02\",\n" + " \"limit\": 2,\n" + " \"page\": 1,\n" + " \"productCode\": \"\",\ 阅读全文

posted @ 2020-06-12 10:47 ~码铃薯~ 阅读(1049) 评论(0) 推荐(0)

2020年6月11日

postgresql数据库中的 rownum

摘要: 公司使用的是postgresql数据库 今天在写项目的时候,遇到了这样一个问题,自己写出的sql语句,如果一次性全部查询出来一共有24条数据,这24条数据也是按照bussinessdate进行降序排列的,显示的最近日期就是自己今天操作的,2020-06-11 但是如果自己加上分页,控制每页显示10条 阅读全文

posted @ 2020-06-11 23:05 ~码铃薯~ 阅读(9377) 评论(0) 推荐(0)

2020年6月9日

mybatis框架,执行插入语句的时候,如果没有字段传过来就赋值为空 进行判断

摘要: <insert id="insert" parameterType="com.ps.psdf.ScoreSettlePo"> insert into t_score_settel (score_settel_id, member_code, order_no, product_code, produ 阅读全文

posted @ 2020-06-09 15:39 ~码铃薯~ 阅读(3128) 评论(0) 推荐(0)

2020年5月30日

postgresql数据库left join将主表中的数据查询出多条的解决办法

摘要: 今天遇到了一个比较纳闷的bug 1 select 2 tbd.item_id as item_ID, 3 tbi.item_code||'-'||tbi.item_name as item_name, 4 tb.budget_code ||'-'|| tb.budget_name as budget 阅读全文

posted @ 2020-05-30 10:56 ~码铃薯~ 阅读(3907) 评论(0) 推荐(0)

上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 89 下一页

导航