acts_as_taggable_on_steroids 的 Unicode 问题

发布于 2024-07-07 06:52:55 字数 300 浏览 7 评论 0原文

我正在实现一个带有一些法语字符标签的博客。 我的问题与如何处理 url 中的空格和 unicode (utf-8) 字符有关。

假设我有一个名为:ohlàlà! 我的标签云中有以下代码:

<%= link_to h(tag.name.capitalize), { :controller => :blog, :action => :tag, :id => h(tag.name) }, :class => css_class %>

我该如何处理这个问题?

I'm implementing a blog with tags with some French characters. My question has to do with how to deal with spaces and unicode (utf-8) characters in the url.

let's say I have a tag called: ohlàlà! and I have the following code in my tag cloud:

<%= link_to h(tag.name.capitalize), { :controller => :blog, :action => :tag, :id => h(tag.name) }, :class => css_class %>

How do I deal with this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凶凌 2024-07-14 06:52:55

请参阅 ToASCII 和 ToUnicode。 org/wiki/Internationalized_domain_name" rel="nofollow noreferrer">这篇维基百科文章。 我希望这篇文章有足够的指导来解决您的问题。

编辑:虽然它谈论PythonUnicode 和永久链接 可以提供有关如何对您的问题的解决方案进行编码的想法。 总结一下:

基本上,Unicode URL 以 UTF8 编码,并且 UTF8 编码字符串的每个字节都使用百分比编码进行编码。 浏览器显然识别了这种特定的编码方案(我没有在任何地方记录它)并为用户显示漂亮的国际化 URL。

抱歉,我不知道 Rails 是否有现成的函数以这种方式对 URL 进行编码。

See ToASCII and ToUnicode in this Wikipedia article. I hope the article has enough pointers to resolve your question.

Edit: Though it talks Python, Unicode and permalinks can give an idea about how to encode a solution to your question. To summarize:

Basically, the Unicode URL is encoded in UTF8 and each byte of the UTF8-encoded string is encoded using percent encoding. The browser apparently recognized this specific encoding scheme (which isn’t documented anywhere I could fine) and displays nice internationalized URLs for the user.

Sorry, I've no idea if Rails has a ready-made function to encode URLs this way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文