Django POST请求无法正常工作

时间:2018-11-11 13:29:31

标签: python ajax django post request

我有一个Django项目,目前正在我希望将产品添加到数据库的地方。我有几个字段,用户可以在其中输入产品的详细信息,然后将其发送到create函数,并将其保存到数据库中。不幸的是,这没有发生。这是我第一次使用Django,所以我不确定这里出了什么问题。这是我到目前为止的代码:

我的Index.html页面:

<!DOCTYPE html>
<html>
<body>

<h2>Create product here</h2>
<div>
<form id="new_user_form" method="post">
  {% csrf_token %}
  <div>
  <label for="name" > Name:<br></label>
  <input type="text" id="name"/>
  </div>
  <br/>
  <div>
  <label for="description"> description:<br></label>
  <input type="text" id="description"/>
  </div>
  <div>
  <label for="price" > price:<br></label>
  <input type="text" id="price"/>
  </div>

  <div>
    <input type="submit" value="submit"/>
  </div>
</form>
</body>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<script type = "text/text/javascript">

  $(document).on('submit', '#new_user_form', function(e)){
    e.preventDefault()

    $.ajax({
      type: 'POST',
      url:'/user/create',
      data:{
        name:$('#name').val(),
        description:$('#description').val(),
        price:$('#price').val(),
      }
      success.function(){
        console.log('created')
      }    
    })
  }    
</script>
</html>

这是我的urls.py代码:

from django.contrib import admin
from django.urls import path
from django.conf.urls import include, url
from testapp import views

admin.autodiscover()

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', views.index),
    path('user/create', views.create_product, name='create_user')
]

我的views.py代码:

from django.shortcuts import render
from testapp.models import User
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt

def index(request):
    return render(request, 'index.html')

@csrf_exempt
def create_product(request):
    if request.method == 'POST':
        name = request.POST['name']
        description = request.POST['description']
        price = request.POST['price']

        User.objects.create(
            name = name,
            description = description,
            price = price
        )

        return HttpResponse('')

和models.py代码:

from django.db import models

# Create your models here.
class User(models.Model):
    name = models.CharField(max_length = 32)
    desscription = models.TextField()
    price = models.CharField(max_length = 128)

这个问题是在运行时发送POST请求,但是数据没有保存到数据库,我也不知道为什么。我已经按照几个教程和文档进行了介绍,但是无法弄清楚在这里无法正常工作的原因。有人可以看一下并让我知道吗?

0 个答案:

没有答案