.net core @Html 自定义属性中包含特殊符号解决
2021-02-17 10:19
标签:练手 资料 sel ext 自己 toolbar tle net reac
最近自己在练手项目用到了VUE 绑定属性的时候发现 有: -符号 这样显然是不支持的。之前发现 v-on 这种-符号也是不支持的 但是可用 @v_on 替代。可是找遍了所有资料也没找到:转义符 当时想到的思路就是将attribute 属性这块改成string 字符串形式 增加一个扩展方法 搞定!!! .net core @Html 自定义属性中包含特殊符号解决 标签:练手 资料 sel ext 自己 toolbar tle net reac 原文地址:https://www.cnblogs.com/lonelyxmas/p/12955897.htmlusing Microsoft.AspNetCore.Html;
using Microsoft.AspNetCore.Mvc.Rendering;
using System.Collections.Generic;
namespace HM.HouseCloud.Extensions
{
public static class SelectExtensions
{
public static IHtmlContent HtmlAttributesCustom(this IHtmlContent htmlContent, Dictionarystring,string> dic)
{
TagBuilder content = (TagBuilder)htmlContent;
foreach (var item in dic)
{
content.Attributes.Add(item);
}
return content;
}
}
}
上一篇:JS学习第二天
下一篇:Thinkphp相关总结
文章标题:.net core @Html 自定义属性中包含特殊符号解决
文章链接:http://soscw.com/index.php/essay/56528.html