Prechádzať zdrojové kódy

获取图片URL解码

MaybeEleven 1 rok pred
rodič
commit
7a70469405

+ 3 - 4
src/PTCMS.API/PTCMS.API/Controllers/CertificateController.cs

@@ -1,4 +1,5 @@
 using System.Security.Policy;
+using System.Web;
 
 using Microsoft.AspNetCore.Http;
 using Microsoft.AspNetCore.Mvc;
@@ -66,7 +67,7 @@ namespace PTCMS.API.Controllers
             if (string.IsNullOrWhiteSpace(url))
                 return BadRequest("文件名无效");
 
-
+            url = HttpUtility.HtmlDecode(url);
 
             var ext = Path.GetExtension(url);
             if (ext == ".jpg" || ext == ".png")
@@ -91,11 +92,9 @@ namespace PTCMS.API.Controllers
                 {
                     return BadRequest(ex.Message);
                 }
-
             };
 
             return BadRequest("目前只支持jpg和png格式");
-
         }
     }
-}
+}

+ 0 - 2
src/PTCMS.API/PTCMS.API/Infrastructure/Repositories/CertificateRepository.cs

@@ -33,7 +33,6 @@ namespace PTCMS.API.Infrastructure.Repositories
         /// <returns></returns>
         public async Task<Certificate> GetCertificateAsync(CertificateSearchDto input)
         {
-
             Expression<Func<Certificate, bool>> expression = null;
 
             if (!string.IsNullOrWhiteSpace(input.Name) && !string.IsNullOrWhiteSpace(input.IdNumber) && !string.IsNullOrWhiteSpace(input.CertificateNumber))
@@ -58,7 +57,6 @@ namespace PTCMS.API.Infrastructure.Repositories
                 return null;
             }
 
-
             var data = await _freeSql.Select<Certificate>().Where(expression).FirstAsync();
 
             return data;