gpt4 book ai didi

python - 将 POST 请求重定向到已使用的 URL (Django)

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

我有一个包含一些产品的表格,每个产品旁边都有一个添加到购物车按钮,可以将产品。in_cart bool 值更改为true。当我单击按钮时,值会发生变化,但我不会转到我想要的 URL (add_to_cart/product_id)。我想重定向到索引(产品列表)。我怎样才能做到这一点?

我还收到一条错误消息: View products.views.add_to_cart 未返回 HttpResponse 对象。

这是我的代码:

index.html

<table>
<tr>
<th>List of car parts available:</th>
</tr>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
{% for product in products_list %}
<tr>
<td>{{ product.id }}</td>
<td>{{ product.name }}</td>
<td>${{ product.price }}</td>
<td>{% if not product.in_cart %}
<form action="{% url 'add_to_cart' product_id=product.id %}" method="POST">
{% csrf_token %}
<input type="submit" id="{{ button_id }}" value="Add to cart">
</form>
{% else %}
{{ print }}
{% endif %}
</td>
</tr>
{% endfor %}
</table>

<a href="{% url 'cart' %}">See cart</a>

View .py

def cart(request):
if request.method == 'GET':
cart_list = Product.objects.filter(in_cart = True)
template_cart = loader.get_template('cart/cart.html')
context = {'cart_list': cart_list}
return HttpResponse(template_cart.render(context, request))


def add_to_cart(request, product_id):
if request.method == 'POST':
product = Product.objects.get(pk=product_id)
product.in_cart = True
product.save()
return redirect('index')

def remove_from_cart(request, product_id):
if request.method == 'POST':
product = Product.objects.get(pk=product_id)
product.in_cart = False
product.save()
return redirect('cart')

url.py

urlpatterns = [
path('', views.index, name='index'),
path('cart/', views.cart, name='cart'),
re_path(r'^add_to_cart/(?P<product_id>[0-9]+)$', views.add_to_cart, name='add_to_cart'),
re_path(r'^remove_from_cart/(?P<product_id>[0-9]+)$', views.remove_from_cart, name='remove_from_cart')
]

谢谢:)

最佳答案

def add_to_cart(request, product_id):   if request.method == 'POST':
product = Product.objects.get(pk=product_id)
product.in_cart = True
product.save()
return redirect('cart')

cart 是 urls.py 中定义的名称 (path('cart/',views.cart, name='cart'))

还有从 django.shortcuts 导入重定向

关于python - 将 POST 请求重定向到已使用的 URL (Django),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51274902/

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