Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从数据库中动态加载我的页面中的元名称 =“描述”。我有一些包含撇号的内容,例如
男士运动衫
当我检查页面源时,我看到元描述为
Men's Sweat Shirt
这是应该的吗?
是的,我知道谷歌对我的元描述不太感兴趣,但是,我更愿意遵循正确的指导方针。
除非它打扰某些事情,否则这可能是最好的方式。如果不加以检查,撇号或单引号可能会破坏很多代码。'是撇号的 html 转义序列。实际上,我很惊讶它没有破坏数据库中的任何内容,因为 SQL 使用单引号作为字符串分隔符。
'
如果你觉得你需要摆脱它,看看HttpUtility.HtmlDecode()
HttpUtility.HtmlDecode()