gpt4 book ai didi

Django:{% url } 标签中的 UUID 类型

转载 作者:行者123 更新时间:2023-12-04 12:12:12 25 4
gpt4 key购买 nike

简介

我正在关注 Django tutorial .相比之下,我有两个数据库——MySql 和 Cassandra。因此,我还需要使用包含 UUID 的 Cassandra 模型。类型。 UUID 的形式为 32 个字母数字字符和四个连字符 (8-4-4-12)。因此,我的 urls.py 中有相当复杂的正则表达式:

^([A-Fa-f0-9]{8}))(-[A-Fa-f0-9]{4}){3}-[A-Fa-f0-9]{12}

问题

polls/templates/polls/detail.html teplate 是以下行:
<form action="{% url 'polls:vote' question.question_id %}" method="post">
question.question_id的UUID类型然后被翻译成:
/polls/UUID('47de663a-57f2-4ca1-9ad9-81df9ae25973')/
代替
/polls/47de663a-57f2-4ca1-9ad9-81df9ae25973/
因此,我收到了错误消息:

Reverse for 'vote' with arguments '(UUID('47de663a-57f2-4ca1-9ad9-81df9ae25973'),)' and keyword arguments '{}' not found. 1 pattern(s) tried:[u'polls/(?P^([A-Fa-f0-9]{8})(-[A-Fa-f0-9]{4}){3}-[A-Fa-f0-9]{12})/vote/$'



问题

如何处理 UUID 类型?

我想我不能在 {% url} 中使用 str(question.question_id) 函数标签。

来源

根网址 - mysite/urls.py:
from django.conf.urls import url

from . import views

app_name= 'polls'
urlpatterns = [
#ex: /polls/
url(r'^$',views.index, name='index'),
#ex: /polls/uuid
url(r'^(?P<question_id>^([A-Fa-f0-9]{8})(-[A-Fa-f0-9]{4}){3}-[A-Fa-f0-9]{12})/$', views.detail, name='detail'),
#ex: /polls/uuid/results/
url(r'^(?P<question_id>^([A-Fa-f0-9]{8})(-[A-Fa-f0-9]{4}){3}-[A-Fa-f0-9]{12})/results/$', views.results, name='results'),
#ex: /polls/uuid/vote
url(r'^(?P<question_id>^([A-Fa-f0-9]{8})(-[A-Fa-f0-9]{4}){3}-[A-Fa-f0-9]{12})/vote/$', views.vote, name='vote'),
]

民意调查应用程序 polls/urls.py:
from django.conf.urls import url
from . import views

app_name= 'polls'
urlpatterns = [
url(r'^$',views.index, name='index'),
#ex: polls/5/results/
url(r'^(?P<question_id>[0-9]+)/results/$', views.results, name='results'),
#ex: /polls/5/volte
url(r'^(?P<question_id>(^([A-Fa-f0-9]{8}))(-[A-Fa-f0-9]{4}){3}-[A-Fa-f0-9]{12})/vote/$', views.vote, name='vote'),
#ex: polls/5/
url(r'^(?P<question_id>[^/]+)/$',views.detail, name='detail'),
]

民意调查/views.py:
from django.shortcuts import render

# Create your views here.

from django.shortcuts import render, get_object_or_404
from .models import Question, Choice
from django.shortcuts import get_object_or_404, render


def index(request):
#latest_question_list = Question.objects.order_by('-pub_date')[5:]
latest_question_list = Question.objects()
context = {
'latest_question_list': latest_question_list,
}
return render(request, 'polls/index.html', context)


def detail(request, question_id):
question = get_object_or_404(Question, pk=question_id)
return render(request, 'polls/detail.html', {'question':question})


def vote(request, question_id):
question = get_object_or_404(Question, pk=question_id)
try:
selected_choice = get_object_or_404(Choice, pk=question_id)
#selected_choice = question.choice_set.get(pk=request.POST['choice'])
except (KeyError, Choice.DoesNotExist):
# Redisplay the question voting form.
return render(request, 'polls/detail.html', {
'question': question,
'error_message': "You didn't select a choice.",
})
else:
selected_choice.votes += 1
selected_choice.save()
# Always return an HttpResponseRedirect after successfully dealing
# with POST data. This prevents data from being posted twice if a
# user hits the Back button.
return HttpResponseRedirect(
reverse('polls:results', args=(question.question_id,))
)

def results(request, question_id):
question = get_object_or_404(Question, pk=question_id)
return render(request, 'polls/results.html', {'question': question})

民意调查/模板/民意调查/detail.html:
<h1>{{ question.question_text }}</h1>

{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}

<form action="{% url 'polls:vote' question.question_id %}" method="post">
{% csrf_token %}
{% for choice in question.choice_set.all %}
<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br />
{% endfor %}
<input type="submit" value="Vote" />
</form>

民意调查/模型.py:
from django.db import models

# Create your models here

import uuid
from cassandra.cqlengine import columns
from cassandra.cqlengine import models


from django_cassandra_engine.models import DjangoCassandraModel

class User(models.Model):
username = columns.Text(primary_key=True)
password = columns.Text()
email = columns.Text()
fullname = columns.Text()
is_staff = columns.Boolean(default=False)

class ExampleModel(DjangoCassandraModel):
example_id = columns.UUID(primary_key=True, default=uuid.uuid4)
example_type = columns.Integer(index=True)
created_at = columns.DateTime()
description = columns.Text(required=False)

class Question(DjangoCassandraModel):
def __str__(self):
return self.question_text
question_id = columns.UUID(primary_key=True)
question_text = columns.Text()
pub_date = columns.TimeUUID()

class Choice(DjangoCassandraModel):
def __str__(self):
return self.choise_text
question = columns.UUID(primary_key=True)
choice_text = columns.Text()
votes = columns.Integer(index=True,default=0)

最佳答案

您的 question_id正则表达式是错误的。如果您使用的是 uuid4正如您看起来(并假设您不希望大写字母验证,因为 python 的 uuid.uuid4() 在呈现为字符串时会产生小写字母),question_id 的正则表达式捕获的组是:

(?P<question_id>[a-f0-9]{8}-?[a-f0-9]{4}-?4[a-f0-9]{3}-?[89ab][a-f0-9]{3}-?[a-f0-9]{12})

为 Django 2.0 编辑:
Django 现在有 path converters ,因此您不再需要 uuid4 正则表达式。下面是一个例子:
from django.urls import path

urlpatterns = [
path('questions/<uuid:question_id>/', MyView.as_view()),
]

关于Django:{% url } 标签中的 UUID 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42046955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com