Fliegend的乱七八糟空间

新手入门,Hello World!

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2021年12月13日

摘要: 开发过程中遇到一个不能直接调用泛型工具类的方法,因此需要通过反射来摆脱直接依赖。 被调用静态方法示例 public class test{ public static <T> T get(Class<T> tClass){ try { return test2.getData(tClass); } 阅读全文
posted @ 2021-12-13 16:11 Fliegend 阅读(410) 评论(0) 推荐(0) 编辑

2021年9月9日

摘要: /deep/ .el-tree>.el-tree-node { display: inline-block; min-width: 100%;} 阅读全文
posted @ 2021-09-09 16:28 Fliegend 阅读(690) 评论(0) 推荐(0) 编辑

2021年6月11日

摘要: 执行nexus私库地址,并且npm login完成后,进行npm i下载依赖时,当依赖过多或者执行时间过长时,出现如下错误提示 npm ERR! path D:\xxx\xxx\xxx\node_modules\.staging\echarts-7d8faaa3\dist\echarts.simpl 阅读全文
posted @ 2021-06-11 14:12 Fliegend 阅读(2949) 评论(0) 推荐(0) 编辑

2021年6月2日

摘要: ext开发实现点击任意html元素打开一个ext组件悬浮面板的功能。 类似与下图中点击蓝色按钮,触发一个选择面板组件功能。 首先要求此悬浮面板组件必须继承于 Ext.Component 此时利用component的float属性将组件悬浮,利于showat将组件定位与指定html元素下方。 关键代码 阅读全文
posted @ 2021-06-02 14:04 Fliegend 阅读(251) 评论(0) 推荐(1) 编辑

2021年5月27日

摘要: 老样子我们还是遵循问题的三个方面来剖析和解决问题 【1】是什么【2】为什么【3】怎么做 【1】gitHub是什么(老生常谈但是还是谈一下) gitHub是一个面向开源及私有软件项目的托管平台,因为只支持git 作为唯一的版本库格式进行托管,故名gitHub。 1、使用GitHub可以查看别人的项目; 阅读全文
posted @ 2021-05-27 09:56 Fliegend 阅读(3527) 评论(0) 推荐(0) 编辑

2021年5月25日

摘要: 解决无法注入的问题 打包之后注入提示 required a bean of type 'com.xxx.xxx' that could not be found 查询各种资料,研究了半天,一个配置就搞定 添加 <!-- 保持目录结构--> <option>-keepdirectories</opti 阅读全文
posted @ 2021-05-25 14:14 Fliegend 阅读(1891) 评论(0) 推荐(0) 编辑

2021年4月23日

摘要: 手动注册bean 此种方式注册的bean在调用时将由spring进行创建,相当于延迟加载bean import org.springframework.beans.BeansException;import org.springframework.beans.factory.support.Bean 阅读全文
posted @ 2021-04-23 15:44 Fliegend 阅读(10068) 评论(0) 推荐(2) 编辑

2021年4月22日

摘要: 在日常使用store获取远程数据时,经常遇到需要远程接口返回的数据并不是直接就是前端需要的,或者希望在返回store数据的同时,返回其他相关数据,此时可以在store获取返回值时直接在store内部针对数据进行一次处理。 在配置reader时支持transform可传递一个方法,方法返回值为实际写入 阅读全文
posted @ 2021-04-22 10:39 Fliegend 阅读(270) 评论(0) 推荐(0) 编辑

摘要: 1.当前对象的父对象(上级对象) this.ownerCt: 2.当前对象的下一个相邻的对象 this.nextSibling(); 3.当前对象的上一个相邻的对象 this.previousSibling(); 4.当前容器中的第一个子对象 this.get(0); this.items.firs 阅读全文
posted @ 2021-04-22 10:27 Fliegend 阅读(145) 评论(0) 推荐(0) 编辑

2021年1月20日

摘要: 1、正方形照片 如果仅仅是正方形照片可直接设置 border-radius:50%解决。 代码 <img src="xxxxxxx" style="border-radius: 50%"/> 效果 2、长方形照片 如果是长方形,例如各种证件照,如果仅使用border-radius 就会出现照片被拉伸 阅读全文
posted @ 2021-01-20 15:51 Fliegend 阅读(1198) 评论(0) 推荐(0) 编辑