如何解决在ASP.NET Core中找不到图像时设置默认图像
2021/5/13 22:30:53
本文主要是介绍如何解决在ASP.NET Core中找不到图像时设置默认图像,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录
背景
先决条件
实现方式
开源地址
背景
web上如果图片不存在一般是打xx,这时候一般都是会设置默认的图片代替。现在用中间件的方式实现统一设置, 一次设置,全部作用 。
此示例演示如何解决在ASP.NET Core中找不到图像时设置默认图像
先决条件
-
Visual Studio 2017或更高版本。
-
启用Visual Studio的ASP.NET Core开发组件。
实现方式
1、Startup 文件
app.UseDefaultImage(defaultImagePath: Configuration.GetSection("defaultImagePath").Value);
2、新建类DefaultImageMiddleware
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; namespace conan.Saas.Framework.Middlewares { public class DefaultImageMiddleware { private readonly RequestDelegate _next; public static string DefaultImagePath { get; set; } public DefaultImageMiddleware(RequestDelegate next) { this._next = next; } public async Task Invoke(HttpContext context) { await _next(context); if (context.Response.StatusCode == 404) { var contentType = context.Request.Headers["accept"].ToString().ToLower(); if (contentType.StartsWith("image")) { await SetDefaultImage(context); } } } private async Task SetDefaultImage(HttpContext context) { try { string path = Path.Combine(Directory.GetCurrentDirectory(), DefaultImagePath); FileStream fs = File.OpenRead(path); byte[] bytes = new byte[fs.Length]; await fs.ReadAsync(bytes, 0, bytes.Length); //this header is use for browser cache, format like: "Mon, 15 May 2017 07:03:37 GMT". //context.Response.Headers.Append("Last-Modified", $"{File.GetLastWriteTimeUtc(path).ToString("ddd, dd MMM yyyy HH:mm:ss")} GMT"); await context.Response.Body.WriteAsync(bytes, 0, bytes.Length); } catch (Exception ex) { await context.Response.WriteAsync(ex.Message); } } } public static class DefaultImageMiddlewareExtensions { public static IApplicationBuilder UseDefaultImage(this IApplicationBuilder app, string defaultImagePath) { DefaultImageMiddleware.DefaultImagePath = defaultImagePath; return app.UseMiddleware<DefaultImageMiddleware>(); } } }
3、appsettings.json 添加路径
"defaultImagePath": "wwwroot\\DefaultImage.png",
4、最后在wwwroot放张DefaultImage.png图片即可
开源地址
https://github.com/conanl5566/Sampleproject
这篇关于如何解决在ASP.NET Core中找不到图像时设置默认图像的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#