2024年5月12日

Angular组件之间通信

摘要: 阅读全文

posted @ 2024-05-12 20:59 金满仓 阅读(2) 评论(0) 推荐(0) 编辑

angular之pipe

摘要: 義 pipe transform data in string interpolation 法 {{date | date:'yyyy-MM-dd HH:mm:ss'}} {{name | uppercase | lowercase}} 義 customizing pipe personalize 阅读全文

posted @ 2024-05-12 15:57 金满仓 阅读(5) 评论(0) 推荐(0) 编辑

2022年7月31日

Dirty Trick

摘要: 开发商 用【价值1000万的开发商资产】抵押到《农行的1000万贷款》开发商 用《农行的500万贷款》开发【售价为2000万的房产】开发商 吞 {{农行剩下的500万贷款}}开发商 用【售价为2000万的房产】抵押到《工行的2000万贷款》开发商 用《工行的1000万贷款》开发【售价为4000万的房 阅读全文

posted @ 2022-07-31 15:08 金满仓 阅读(55) 评论(0) 推荐(0) 编辑

IDEA相关操作

摘要: 1. Set display mode of package Switch between the 3 options (Flatten Packages, Compact Middle Packages, Hide Empty Middle Packages) in the pop-up menu 阅读全文

posted @ 2022-07-31 14:47 金满仓 阅读(18) 评论(0) 推荐(0) 编辑

mysql相关操作

摘要: mysqld --initialize-insecure --user=mysql #初始化数据库,设置默认root用户,密码为空,初始化完成后,在mysql根目录中会自动生成data文件 mysqld install #为windows安装mysql服务,默认服务名为mysql net start 阅读全文

posted @ 2022-07-31 14:46 金满仓 阅读(17) 评论(0) 推荐(0) 编辑

2022年4月21日

策略模式

摘要: package com.life.design.strategy; public interface Promotion { void show(); } package com.life.design.strategy; public class PromotionA implements Pro 阅读全文

posted @ 2022-04-21 07:54 金满仓 阅读(29) 评论(0) 推荐(0) 编辑

模板方法模式

摘要: package com.life.design.template; public abstract class Cooking { public final void cookProcess() { pourOil(); heatOil(); pourVegetable(); pourSauce() 阅读全文

posted @ 2022-04-21 07:29 金满仓 阅读(15) 评论(0) 推荐(0) 编辑

2022年4月20日

享元模式

摘要: package com.life.design.flyweight; public abstract class WebSite { public abstract void use(String name);//抽象方法 } package com.life.design.flyweight; / 阅读全文

posted @ 2022-04-20 22:29 金满仓 阅读(27) 评论(0) 推荐(0) 编辑

外观模式

摘要: package com.life.design.facade; public class SmartAppliancesFacade { private Light light; private TV tv; private AirCondition airCondition; public Sma 阅读全文

posted @ 2022-04-20 18:58 金满仓 阅读(21) 评论(0) 推荐(0) 编辑

组合模式

摘要: package com.life.design.composite; public abstract class MenuComponent { protected String name; protected int level; public void add(MenuComponent men 阅读全文

posted @ 2022-04-20 09:58 金满仓 阅读(21) 评论(0) 推荐(0) 编辑

导航