【Angular】angular 点击事件阻止冒泡及默认行为
摘要:阻止冒泡 $event.stopPropagation() 阻止默认行为 $event.preventDefault() stop($event){ $event.stopPropagation(); $event.preventDefault(); }
阅读全文
【封装】 兼容性最强下载文件
摘要:/** * 兼容性最强下载文件 * url 接口 * data 数据 * method */ export const downloadFile = (url, data, method = 'GET') => { const body = document.getElementsByTagName
阅读全文
【Angular】Angular踩过的坑
摘要:1、在html中动态的添加class,并使用管道 <thy-icon class="status-icon " [style.color]="( taskDetail?.status | taskStatus)?.color" [thyIconName]="( taskDetail?.status
阅读全文