我在视图中使用Url.Encode并且它用以下代替空格而不是: / production / cats-the-musical我得到了… / cat the musical. 我确定这是一个简单的,但你在哪里配置哪些字符用于此? 我会这样做的: p
/ production / cats-the-musical我得到了… / cat the musical.
我确定这是一个简单的,但你在哪里配置哪些字符用于此?
我会这样做的:
public static string EncodeForSEO(this UrlHelper helper, string unencodedUrl) { return helper.Encode(unencodedUrl.Replace(' ', '-')); }
直到我得到你们更好的回答.
编辑:谢谢Guffa指出我仓促的编码.
您无法更改UrlEncode方法使用的字符,对于空格的使用是在URL的编码标准中定义的,使用“ – ”代替意味着该方法会更改值而不仅仅是编码它.由于“ – ”字符未编码,因此无法将字符串解码回原始值.在您的方法中,在进行替换之前无需检查字符.如果Replace方法找不到要替换的内容,则只返回原始字符串引用.
public static string EncodeForSEO(this UrlHelper helper, string unencodedUrl) { return helper.Encode(unencodedUrl.Replace(' ', '-')); }