摘要:
将WebAPI部署在服务器后,JS后端调用需要解决跨域问题, Nuget: Startup.cs配置: public class Startup { readonly string Cors = "CorsPoilcy"; services.AddCors(options => { options. 阅读全文
摘要:
DICOM(digital imaging communications in medicine) (医学数字图像通信) DICOM 可以解释为“医学数字化图像 通信/交流 的共同规格”,且在国内是唯一被接受的医疗影像国际规范。 写在前面,本文仅做笔记,对 dicom 理解不深,建议直接下拉到文末, 阅读全文
摘要:
目的:将一个对象的字段赋值给另外一个对象,为空或默认值则不赋值 关键代码: PropertyInfo[] props = typeof(hospital).GetProperties(); foreach (PropertyInfo p in props) { if (p.PropertyType. 阅读全文