我有一个Django网址:
path('question/<slug:question_slug>/add_vote/',views.AddVoteQuestionView.as_view())
它适用于英语slug,但当slug是波斯语时,如下所示:
/ question /سوال-تست/ add_vote /
django url throw 404未找到,有什么解决方案可以捕获此persan slug url?
编辑:
我正在使用django 2.1.5.
此网址可以正常工作:
re_path(r'question/(?P<question_slug>[\w-]+)/add_vote/$',views.AddVoteQuestionView.as_view())
最佳答案
这是Selcuk答案given here的补充
传递此类语言/ unicode字符,您必须
> Write some custom path converter
>使用re_path()
function
1.自定义路径转换器
如果我们查看Django的源代码,则slug
路径转换器将使用此正则表达式[-a-zA-Z0-9_],在此无效(请参见Selcuk的答案).
因此,编写您自己的自定义子弹转换器,如下所示
from django.urls.converters import SlugConverter
class CustomSlugConverter(SlugConverter):
regex = '[-\w]+' # new regex pattern
然后注册
from django.urls import path,register_converter
register_converter(CustomSlugConverter,'custom_slug')
urlpatterns = [
path('question/<custom_slug:question_slug>/add_vote/',views.AddVoteQuestionView.as_view()),...
]
2.使用re_path()
您已经尝试过并成功使用此方法.无论如何,我在这里c& p 原文链接:https://www.f2er.com/python/533224.html