Django i18n_patterns:resolve() 没有按预期工作 [英] Django i18n_patterns: resolve() doesnt work as expected

查看:22
本文介绍了Django i18n_patterns:resolve() 没有按预期工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

解决这个问题后这里,还有一个:如果你在这里使用翻译 url 系统 https://docs.djangoproject.com/en/1.8/topics/i18n/translation/ 你会看到你添加了像 urlpatterns += i18n_patterns(...).

After solving this problem here, there's another one: if you use the translation url system here https://docs.djangoproject.com/en/1.8/topics/i18n/translation/ you will see you add patterns like urlpatterns += i18n_patterns(...).

问题是基本网址没有没有考虑语言,即:

The problem is that the base url without the language is not taken in account ie:

  • resolve('/fr/produits/') 有效,
  • resolve('/produits/') 不起作用并引发 404.
  • resolve('/fr/produits/') works,
  • but resolve('/produits/') doesnt work and raises 404.

如何解决?

这是我的网址:

urlpatterns = [
    url(r'^debug/?$', p_views.debug, name='debug'),
    url(r'^i18n/', include('django.conf.urls.i18n')),
    url(r'^login/(w*)', p_views.login, name='login'),
    url(r'^admin/', include(admin_site.urls)),
    url(r'^public/(?P<path>.*)$',
        'django.views.static.serve',
        {'document_root': settings.MEDIA_ROOT},
        name='url_public'
        ),
]
urlpatterns += i18n_patterns(
    url(_(r'^produits/detail/(?P<slug>[a-zA-Z0-9-_]+)/$'),
        p_views.ProduitDetailView.as_view(), name='produits_detail'),
    url(_(r'^produits/'),
        p_views.IndexView.as_view(), name='produits_index'),
)

这是我制作的非常简单的 URL-tester(对应于 /debug 视图):

And here's the very simple URL-tester I've made (which corresponds to the /debug view):

def debug(req):

    def test(url):
        try:
            return u'<pre>{0} {1}</pre>'.format(url, resolve(url))
        except Resolver404:
            return u'<pre>{0} {1}</pre>'.format(url, 'None')

    response = HttpResponse()
    response.write(test('produits'))
    response.write(test('produits/'))
    response.write(test('/produits'))
    response.write(test('/produits/'))
    response.write(test('/fr/produits'))
    response.write(test('/fr/produits/'))
    response.write(test('/en/products/'))
    response.write(test('/sv/produkter/'))
    return response

这是 http://localhost:8000/debug 页面:

produits None
produits/ None
/produits None
/produits/ None
/fr/produits None
/fr/produits/ ResolverMatch(func=produits.views.IndexView, args=(), kwargs={}, url_name=produits_index, app_name=None, namespaces=[])
/en/products/ None
/sv/produkter/ None

最后三行都应该返回 ResolverMatch(...) 因为它们都是有效的 URL.

The three lastest lines should all return ResolverMatch(...) because they are all valid URLs.

推荐答案

Django 的 url 解析器仅适用于当前语言.因此,在尝试使用特定语言解决 URL 之前,您需要切换语言,使用 translation.activate.

Django's url resolvers only work on current language. So you will need to switch language before attempting to solve an url in a specific language, using translation.activate.

为了解析 url,这意味着你必须事先知道语言,切换到它然后才解析(基本上 localemiddleware 会为你做什么).

For resolving the url, that means you must know the language beforehand, switch to it and only then resolve (basically what the localemiddleware will do for you).

为了反转 url,这意味着您可能应该使用其名称反转 url.您将以当前语言取回网址.我现在无法测试,但它应该像这样工作:

For reversing the url, that means you should probably reverse the url using its name. You'll get back the url in current language. I cannot test right now, but it should work like this:

from django.utils import translation
translation.activate('fr')
reverse('produits_index')    # /fr/produits/
translation.activate('en')
reverse('produits_index')    # /en/products/

如果您确实设法获得了一个 ResolverMatch 对象,那么您可以将 url 名称作为属性,方便地命名为 url_name.

If you did manage to get a ResolverMatch object, you have the url name as an attribute on it, conveniently named url_name.

我希望它有所帮助,我有点不清楚你想要做什么.随时评论/编辑您的问题,我会尝试更新此答案.

I hope it helps, I am a bit unclear as to what you are trying to do. Feel free to comment/edit your question and I'll try to update this answer.

Olivier Pons 更新

Update by Olivier Pons

这是有效的解决方案:

这是我的工作解决方案,它接近光谱,但按我想要的方式工作:

here's my working solution, which is close to spectras, but works the way I wanted:

# (!) resolve() use current language
#     -> try to guess language then activate BEFORE resolve()
lg_curr = translation.get_language()
lg_url = get_language_from_path(url) or lg_curr
translation.activate(lg_url)
try:
    resolve(url)
    req.session['url_back'] = url  # no error -> ok, remember this
except Resolver404:
    pass
translation.activate(lg_curr)

...然后,在成功注册/登录后,如果有 req.session['url_back'] 然后我将其从会话中删除并对其进行重定向.

...and then later on, after successful registration/login, if there's a req.session['url_back'] then I remove it from session and make a redirect on it.

这篇关于Django i18n_patterns:resolve() 没有按预期工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆