|
@@ -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格式");
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
+}
|