要獲取文本框的值并更新數(shù)據(jù)庫(kù),你可以按照以下步驟進(jìn)行操作:
<form method="POST" action="{% url 'update' %}">
{% csrf_token %}
<input type="text" name="textbox" id="textbox">
<button type="submit">更新</button>
</form>
from django.urls import path
from . import views
urlpatterns = [
path('update/', views.update_view, name='update'),
]
from django.shortcuts import render, redirect
from .models import YourModel
def update_view(request):
if request.method == 'POST':
textbox_value = request.POST.get('textbox')
# 更新數(shù)據(jù)庫(kù)
your_model = YourModel.objects.get(pk=1) # 根據(jù)需要獲取數(shù)據(jù)庫(kù)中的對(duì)象
your_model.field_name = textbox_value # 根據(jù)需要更新字段值
your_model.save()
return redirect('your_redirect_url') # 根據(jù)需要進(jìn)行重定向
return render(request, 'your_template.html')
這里假設(shè)你已經(jīng)創(chuàng)建了一個(gè)名為YourModel的模型,其中包含一個(gè)名為field_name的字段。你需要根據(jù)自己的實(shí)際情況進(jìn)行調(diào)整。同時(shí),還需要定義一個(gè)重定向URL來替換your_redirect_url
。
通過這些步驟,你就可以獲取文本框的值并更新數(shù)據(jù)庫(kù)了。