摘要:
function useDidUpdateEffect(fn, inputs) { const didMountRef = useRef(false); useEffect(() => { if (didMountRef.current) fn(); else didMountRef.current 阅读全文
摘要:
export default function Index(props: any) { useEffect(() => { const getIssueDetail = (e) => { if (e.target.className.includes("xxxxxxxxxx")) { const t 阅读全文
摘要:
// 列中的key(保证dataIndex唯一的情况下可以不填)使用方式示例: const columns = [{ title: '名称', dataIndex: 'name', key: 'name' }] // 行中的key(必填)使用方式示例1: <Table dataSource={pro 阅读全文
摘要:
const waitImgLoaded = async (root) => { const imgNodes = root instanceof HTMLImageElement ? [root] : root.querySelectorAll('img'); let imgArr = Array. 阅读全文
摘要:
一、服务端返回PDF文件流 [HttpGet, Route("GetMediaByPdfFile"),] public HttpResponseMessage GetMediaByPdfFile(string projectCode, string fileId, string fileName) 阅读全文
摘要:
ddcsList = LoadEntities(x => x.Status == 1).GroupBy(t => t.SelectKey).Select(o => o.FirstOrDefault()).ToList(); 阅读全文
摘要:
// 正则提取字符串中的小数 str.replace(/[^\d.]/g, "") // 正则表达式 开头:^ 结尾:$ var str='&12abd3_3iw;'; var regex=/^&.*;$/; var result=regex.test(str); // 正则表达式,以字母开头,由- 阅读全文
摘要:
/// <summary> /// 创建人名 /// </summary> [NotMapped] public string CreateUserName { get; set; } /// <summary> /// 创建时间 /// </summary> [NotMapped] public 阅读全文
摘要:
string str1 = Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe的文件名。 string str2 = Environment.CurrentDirectory;//获取和设置当前目录(即该进程从中启动的目录)的完 阅读全文
摘要:
参考链接:Object to Generic List<> cast (microsoft.com) IList objList = (IList)objData; int count = objList.Count; // The LINQ conversions will lose this i 阅读全文