10 2020 档案

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