作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
解决这个问题后here ,还有一个:如果你在这里使用翻译url系统https://docs.djangoproject.com/en/1.8/topics/i18n/translation/你会看到你添加了像 urlpatterns += i18n_patterns(...)
这样的模式.
问题是基本网址 没有 不考虑语言,即:
resolve('/fr/produits/')
作品,resolve('/produits/')
不起作用并引发 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'),
)
/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。
最佳答案
Django 的 url 解析器仅适用于当前语言。
因此,在尝试使用特定语言解析 url 之前,您需要切换语言,使用 translation.activate
.
对于解析 url,这意味着您必须事先知道语言,切换到它然后才解析(基本上本地中间件将为您做什么)。
对于反转 url,这意味着您可能应该使用其名称反转 url。您将返回当前语言的 url。我现在无法测试,但它应该像这样工作:
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
.
# (!) 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']
然后我从 session 中删除它并对其进行重定向。
关于python - Django i18n_patterns : resolve() doesnt work as expected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32738840/
我是一名优秀的程序员,十分优秀!