摘要: 在 Spring AOP 中,核心概念包括 切面(Aspect)、连接点(JoinPoint)、通知(Advice)、切点(Pointcut)、目标对象(Target Object)、代理(Proxy)。 概念描述 切面(Aspect) 抽象出的功能模块,包含横切逻辑的实现,比如日志、事务等。 通知 阅读全文
posted @ 2025-04-05 11:20 ~落辰~ 阅读(53) 评论(0) 推荐(0)
摘要: 1 <template> 2 <view class="content"> 3 <view v-for="(item, index) in list" 4 :key="index" 5 class="cell-item" 6 @click="showDetail(item)" 7 >{{item.n 阅读全文
posted @ 2021-10-28 12:29 ~落辰~ 阅读(25) 评论(0) 推荐(0)
摘要: PyCharm运行时出现错误: File "<string>", line 1 SyntaxError: invalid syntax 排查问题,比如: 1.检查在 if , elif , else , for , while , class ,def 声明末尾添加冒号【:】,代码并没有错误 2.p 阅读全文
posted @ 2021-01-09 20:11 ~落辰~ 阅读(1200) 评论(0) 推荐(0)