.net core @Html 自定义属性中包含特殊符号解决
原文:.net core @Html 自定义属性中包含特殊符号解决
最近自己在练手项目用到了VUE 绑定属性的时候发现 有: -符号
这样显然是不支持的。之前发现 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; } } }
搞定!!!
相关推荐
owilson 2020-01-02
htmlgood 2015-01-19
hhhkhhh 2015-01-06
liusslove 2011-03-21
yaoliuwei 2012-11-07
seoppt 2017-09-08
skyGAYD 2018-06-05
赵家小少爷 2019-12-17
heshanking 2019-10-29
Passerby 2019-10-28
生活随笔 2015-03-03
Abel 2015-06-01
adminming 2015-03-03
不断攀登的梦想 2012-11-12
xiefei0 2011-07-13
echoright晓戈 2011-11-21
comeonxueRong 2010-02-11