netcore 编译 html,Asp.Net Core中的@ Html.Action

小编典典

更新:从2.2.2版本开始,HttpContextAccessor将上下文保留在一个对象中(据说是为了防止请求之间的混淆),这会影响当前解决方案…因此,您需要为IHttpContextAccessor(旧版本)提供以下实现并进行注册作为一个单例:

public class HttpContextAccessor : IHttpContextAccessor

{

private static AsyncLocal _httpContextCurrent = new AsyncLocal();

HttpContext IHttpContextAccessor.HttpContext { get => _httpContextCurrent.Value; set => _httpContextCurrent.Value = value; }

}

using Microsoft.AspNetCore.Html;

using Microsoft.AspNetCore.Http;

using Microsoft.AspNetCore.Mvc.Infrastructure;

using Microsoft.AspNetCore.Routing;

using Microsoft.Extensions.DependencyInjection;

using System;

using System.IO;

using System.Threading.Tasks;

namespace Microsoft.AspNetCore.Mvc.Rendering

{

public static class HtmlHelperViewExtensions

{

public static IHtmlContent Action(this IHtmlHelper helper, string action, object parameters = null)

{

var controller = (string)helper.ViewContext.RouteData.Values["controller"];

return Action(helper, action, controller, parameters);

}

public static IHtmlContent Action(this IHtmlHelper helper, string action, string controller, object parameters = null)

{

var area = (string)helper.ViewContext.RouteData.Values["area"];

return Action(helper, action, controller, area, parameters);

}

public static IHtmlContent Action(this IHtmlHelper helper, string action, string controller, string area, object parameters = null)

{

if (action == null)

throw new ArgumentNullException("action");

if (controller == null)

throw new ArgumentNullException("controller");

var task = RenderActionAsync(helper, action, controller, area, parameters);

return task.Result;

}

private static async Task RenderActionAsync(this IHtmlHelper helper, string action, string controller, string area, object parameters = null)

{

// fetching required services for invocation

var serviceProvider = helper.ViewContext.HttpContext.RequestServices;

var actionContextAccessor = helper.ViewContext.HttpContext.RequestServices.GetRequiredService();

var httpContextAccessor = helper.ViewContext.HttpContext.RequestServices.GetRequiredService();

var actionSelector = serviceProvider.GetRequiredService();

// creating new action invocation context

var routeData = new RouteData();

foreach (var router in helper.ViewContext.RouteData.Routers)

{

routeData.PushState(router, null, null);

}

routeData.PushState(null, new RouteValueDictionary(new { controller = controller, action = action, area = area }), null);

routeData.PushState(null, new RouteValueDictionary(parameters ?? new { }), null);

//get the actiondescriptor

RouteContext routeContext = new RouteContext(helper.ViewContext.HttpContext) { RouteData = routeData };

var candidates = actionSelector.SelectCandidates(routeContext);

var actionDescriptor = actionSelector.SelectBestCandidate(routeContext, candidates);

var originalActionContext = actionContextAccessor.ActionContext;

var originalhttpContext = httpContextAccessor.HttpContext;

try

{

var newHttpContext = serviceProvider.GetRequiredService().Create(helper.ViewContext.HttpContext.Features);

if (newHttpContext.Items.ContainsKey(typeof(IUrlHelper)))

{

newHttpContext.Items.Remove(typeof(IUrlHelper));

}

newHttpContext.Response.Body = new MemoryStream();

var actionContext = new ActionContext(newHttpContext, routeData, actionDescriptor);

actionContextAccessor.ActionContext = actionContext;

var invoker = serviceProvider.GetRequiredService().CreateInvoker(actionContext);

await invoker.InvokeAsync();

newHttpContext.Response.Body.Position = 0;

using (var reader = new StreamReader(newHttpContext.Response.Body))

{

return new HtmlString(reader.ReadToEnd());

}

}

catch (Exception ex)

{

return new HtmlString(ex.Message);

}

finally

{

actionContextAccessor.ActionContext = originalActionContext;

httpContextAccessor.HttpContext = originalhttpContext;

if (helper.ViewContext.HttpContext.Items.ContainsKey(typeof(IUrlHelper)))

{

helper.ViewContext.HttpContext.Items.Remove(typeof(IUrlHelper));

}

}

}

}

}

它基于白羊座的反应。我更正了2.0版未编译的内容,并添加了一些调整。当前的httpcontext和当前的actioncontext有2个美化的静态值。在httpcontext中IHttpContextFactory.Create设置了一个,在代码中设置了actioncontext。请注意,这取决于你使用的功能IActionContextAccessor,并IHttpContextAccessor可能不会被默认注册,所以你可能需要将其添加在启动:

services.AddSingleton();

services.AddSingleton();

HttpContext只是一个包装器HttpContext.Features,因此,如果您在其中一个进行更改,则在另一个中也进行更改…我将在try

/ catch的最后部分重设我所了解的内容。

我IUrlHelper从Items缓存中删除了,因为即使构建urlHelper的actionContext不同,该值也将被重用IUrlHelperFactory.GetUrlHelper。

Asp.net Core 2.0假设您不会这样做,那么很有可能还有其他缓存的东西,因此我建议在使用此方法时要格外小心,如果不需要,请不要这样做。

2020-05-19

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/396001.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《CCIE路由和交换认证考试指南(第5版) (第1卷)》——1.6节虚拟交换系统

本节书摘来自异步社区《CCIE路由和交换认证考试指南(第5版) (第1卷)》一书中的第1章,第1.6节虚拟交换系统,作者 【美】Narbik Kocharians(那比克 科查理安) , 【斯洛伐克】Peter Pal…

机器学习 美股_我如何使用机器学习来探索英美文学之间的差异

机器学习 美股by Sofia Godovykh索非亚戈多维克(Sofia Godovykh) 我如何使用机器学习来探索英美文学之间的差异 (How I used machine learning to explore the differences between British and American literature) As I delved further into English literature to further…

远程执行漏洞修复方案_请马上修复!SaltStack远程命令执行漏洞

【漏洞预警】SaltStack远程命令执行漏洞(CVE-2020-11651、CVE-2020-11652)2020年5月3日,阿里云应急响应中心监测到近日国外某安全团队披露了SaltStack存在认证绕过致命令执行漏洞以及目录遍历漏洞。漏洞描述SaltStack是基于Python开发的一套C/S架构配置管理工具。国…

kafka部分重要参数配置-broker端参数

broker端参数主要在config/server.properties目录下设置: 启动命令:nohup ./kafka-server-start.sh -daemon ../config/server.properties & broker.id参数:Kafka使用唯一的一个整数来标识每个broker,全局唯一,默认…

JS正则表达式大全(整理详细且实用)

JS正则表达式大全(整理详细且实用) 作者: 字体:[增加 减小] 类型:转载 时间:2013-11-14 我要评论 JS正则表达式大全(整理详细且实用)。需要的朋友可以过来参考下,希望对大家有所帮助正则表达式中的特殊字符 字符 含意…

html设置模块宽度为200像素,css 宽度(CSS width)

DIV CSS宽度width样式属性CSS 宽度是指通过CSS 样式设置对应div宽度,以下我们了解传统html宽度、宽度自适应百分比、固定宽度等宽度知识。传统Html 宽度属性单词:width 如width"300";CSS 宽度属性单词:width 如width:300px;一、Wid…

我从Stack Overflow对64,000名开发人员的大规模调查中学到的东西

Today Stack Overflow released the results of their 2017 survey of more than 64,000 developers.今天,Stack Overflow发布了他们对64,000多名开发人员的2017年调查结果。 Just like in 2016, I’ve combed through these results and summarized them for you.…

《Node应用程序构建——使用MongoDB和Backbone》一第 1 章 介绍与总览1.1 打造一个社交网络...

本节书摘来自异步社区《Node应用程序构建——使用MongoDB和Backbone》一书中的第1章,第1.1节,作者【美】Mike Wilson,更多章节内容可以访问云栖社区“异步社区”公众号查看 第 1 章 介绍与总览 Node应用程序构建——使用MongoDB和Backbone互…

jquery 样式获取设置值_jQuery获取样式中的背景颜色属性值/颜色值

天使用jQuery获取样式中的background-color的值时发现在获取到的颜色值在IE中与Chrome、Firefox显示的格式不一样,IE中是以HEX格式显示#ffff00,而Chrome、Firefox中则是以GRB格式显示rgb(255,0,0),由于需要将颜色值存储到数据库中&#xff0c…

计算机专业做产品,非计算机专业如何做产品经理?

《硅谷产品实战》学习笔记 32课这节课中讲了计算机专业背景对产品经理的帮助:第一印象;判断项目复杂度;了解技术可否实现,有何限制?对于没有计算机专业背景的产品如何弥补专业不足?关于如何判断项目复杂度在…

_UICreateCGImageFromIOSurface 使用API

上传的时候,苹果发送邮件 Non-public API usage: The app references non-public symbols in DUO-LINK 4: _UICreateCGImageFromIOSurfaceIf method names in your source code match the private Apple APIs listed above, altering your method names will help …

匹配一个字符串的开头和结尾_我如何构建一个应用程序来展示精彩小说的开头和结尾

匹配一个字符串的开头和结尾I know sentences. In my decade as a print journalist, I’ve written hundreds of articles for dozens of publications. I’ve dished out more sentences than Judge Judy. But I didn’t study writing or journalism, at least not formally…

python 社区网络转化_python-将numpy打开网格转换为坐标

方法1使用np.meshgrid,然后堆叠-r,c np.meshgrid(*m)out np.column_stack((r.ravel(F), c.ravel(F) ))方法2或者,使用np.array()然后进行转置,重塑-np.array(np.meshgrid(*m)).T.reshape(-1,len(m))对于np.ix_中使用的通用数组数目的通用情况,这里是需要进行的修改-p np.r_[…

《思科数据中心I/O整合》一2.11 活动-活动连接(Active-Active)

本节书摘来自异步社区《思科数据中心I/O整合》一书中的第2章,第2.11节,作者【美】Silvano Gai , Claudio DeSanti,更多章节内容可以访问云栖社区“异步社区”公众号查看 2.11 活动-活动连接(Active-Active) 思科数据中…

spring mvc 返回html 乱码,解决springmvc使用ResponseBody注解返回json中文乱码问题

spring版本:4.2.5.RELEASE查看“org.springframework.http.converter.StringHttpMessageConverter”源码,中有一段说明:By default, this converter supports all media types ({code */*}),and writes with a {code Content-Type} of {code …

JS Ajax异步请求发送列表数据后面多了[]

还在苦逼的写代码,这里就不详细了,直接抛出问题: 如图所示: 前端ajax请求向后端发送数据的时候,给key添加了[]出现很多找不到原因, 后面在说 解决方法: 暂时先这样记录一下,下次方便…

分析堆栈溢出原因_我分析了有关堆栈溢出的所有书籍。 这是最受欢迎的。

分析堆栈溢出原因by Vlad Wetzel通过弗拉德韦泽尔 我分析了有关堆栈溢出的所有书籍。 这是最受欢迎的。 (I analyzed every book ever mentioned on Stack Overflow. Here are the most popular ones.) Finding your next programming book is hard, and it’s risky.寻找下一…

ftp如何预览图片 解决方案

下载使用 server-U ,开启 HTTP 服务,输入 http://ip:端口 后,登录ftp账号密码,可选使用 基于java的应用 web client 或 FTP Voyager JV,来预览图片。 本来想走 windows 文件共享服务预览图片,可是 貌似 被防…

《面向对象的思考过程(原书第4版)》一 导读

本节书摘来自华章出版社《面向对象的思考过程(原书第4版)》一书中的第3章,第3.2节,[美] 马特魏斯费尔德(Matt Weisfeld) 著黄博文 译更多章节内容可以访问云栖社区“华章计算机”…

html文件下的flag,推荐一个SAM文件中flag含义解释工具

SAM是Sequence Alignment/Map 的缩写。像bwa等软件序列比对结果都会输出这样的文件。samtools网站上有专门的文档介绍SAM文件。具体地址:http://samtools.sourceforge.net/SAM1.pdf很多人困惑SAM文件中的第二列FLAG值是什么意思。根据文档介绍我们可以计算&#xff…