上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: function useDidUpdateEffect(fn, inputs) { const didMountRef = useRef(false); useEffect(() => { if (didMountRef.current) fn(); else didMountRef.current 阅读全文
posted @ 2022-03-01 14:05 最好的年纪 阅读(666) 评论(0) 推荐(0) 编辑
摘要: export default function Index(props: any) { useEffect(() => { const getIssueDetail = (e) => { if (e.target.className.includes("xxxxxxxxxx")) { const t 阅读全文
posted @ 2022-01-20 15:27 最好的年纪 阅读(696) 评论(0) 推荐(0) 编辑
摘要: // 列中的key(保证dataIndex唯一的情况下可以不填)使用方式示例: const columns = [{ title: '名称', dataIndex: 'name', key: 'name' }] // 行中的key(必填)使用方式示例1: <Table dataSource={pro 阅读全文
posted @ 2022-01-16 22:37 最好的年纪 阅读(625) 评论(0) 推荐(0) 编辑
摘要: const waitImgLoaded = async (root) => { const imgNodes = root instanceof HTMLImageElement ? [root] : root.querySelectorAll('img'); let imgArr = Array. 阅读全文
posted @ 2021-12-27 10:44 最好的年纪 阅读(854) 评论(0) 推荐(0) 编辑
摘要: 一、服务端返回PDF文件流 [HttpGet, Route("GetMediaByPdfFile"),] public HttpResponseMessage GetMediaByPdfFile(string projectCode, string fileId, string fileName) 阅读全文
posted @ 2021-12-15 18:46 最好的年纪 阅读(585) 评论(0) 推荐(0) 编辑
摘要: ddcsList = LoadEntities(x => x.Status == 1).GroupBy(t => t.SelectKey).Select(o => o.FirstOrDefault()).ToList(); 阅读全文
posted @ 2021-11-22 09:40 最好的年纪 阅读(666) 评论(0) 推荐(0) 编辑
摘要: // 正则提取字符串中的小数 str.replace(/[^\d.]/g, "") // 正则表达式 开头:^ 结尾:$ var str='&12abd3_3iw;'; var regex=/^&.*;$/; var result=regex.test(str); // 正则表达式,以字母开头,由- 阅读全文
posted @ 2021-11-08 17:36 最好的年纪 阅读(64) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 创建人名 /// </summary> [NotMapped] public string CreateUserName { get; set; } /// <summary> /// 创建时间 /// </summary> [NotMapped] public 阅读全文
posted @ 2021-10-26 15:35 最好的年纪 阅读(247) 评论(0) 推荐(0) 编辑
摘要: string str1 = Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe的文件名。 string str2 = Environment.CurrentDirectory;//获取和设置当前目录(即该进程从中启动的目录)的完 阅读全文
posted @ 2021-10-20 15:33 最好的年纪 阅读(3510) 评论(0) 推荐(2) 编辑
摘要: 参考链接:Object to Generic List<> cast (microsoft.com) IList objList = (IList)objData; int count = objList.Count; // The LINQ conversions will lose this i 阅读全文
posted @ 2021-10-20 11:36 最好的年纪 阅读(4612) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页