.net core @Html 自定义属性中包含特殊符号解决

原文:.net core @Html 自定义属性中包含特殊符号解决

最近自己在练手项目用到了VUE 绑定属性的时候发现 有: -符号

.net core @Html 自定义属性中包含特殊符号解决

这样显然是不支持的。之前发现 v-on  这种-符号也是不支持的 但是可用 @v_on 替代。可是找遍了所有资料也没找到:转义符

当时想到的思路就是将attribute 属性这块改成string 字符串形式 

增加一个扩展方法

using 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, Dictionary<string,string> dic)
        {

            TagBuilder content = (TagBuilder)htmlContent;
            foreach (var item in dic)
            {
                content.Attributes.Add(item);
            }
            return content;

        }
    }
}

.net core @Html 自定义属性中包含特殊符号解决

.net core @Html 自定义属性中包含特殊符号解决

  搞定!!!

相关推荐