如何从views.py文件向django数据库插入数据?

时间:2016-02-24 12:19:31

标签: python django django-models django-views pymysql

如何从视图中的函数py文件向我的django数据库插入数据? python manage.py shell是唯一可以插入的方式吗?

有关我正在使用的更多解释:

  • python 3.4
  • django 1.8.2
  • PyMySQL

例如:

models.py:

from django.db import models

class Publisher(models.Model):
    name = models.CharField(max_length=30)
    city = models.CharField(max_length=60)

views.py:

from django.http import HttpResponse
import pymysql
from books.models import Publisher

def send(request):
    p = Publisher(name='Apress', city='Berkeley')
    p.save()

urls.py

  

来自niloofar.views import send

     

url(r'^ index /',send),

我希望在加载页面索引时,send函数可以工作并将数据插入数据库。

它不起作用。它没有给出任何错误,当我刷新索引页面时没有任何反应,没有任何内容被发送到数据库。我认为语法中存在错误,就像我试图插入数据一样。

让我注意到即使我运行python manage.py shell然后:

   from books.models import Publisher

     

p = Publisher(name ='Apress',city ='Berkeley')

     

p.save()

什么都不会插入django数据库。

4 个答案:

答案 0 :(得分:16)

你的问题很不清楚。你可能应该通过django-tutorial

但是请确保您可以从视图中将数据插入到数据库中。假设您有一个名为Foo的模型:

models.py

class Foo(models.Model):
    name = models.CharField(max_length=100)

view.py

from .models import Foo

def some_name(request):
    foo_instance = Foo.objects.create(name='test')
    return render(request, 'some_name.html.html')

答案 1 :(得分:10)

您只需创建一个模型的实例并保存即可。假设你有一个文章模型:

from django.http import HttpResponse
from django.template import loader

from .models import Question


def index(request):
    article = Article()
    article.title = 'This is the title'
    article.contents = 'This is the content'
    article.save()

    template = loader.get_template('articles/index.html')
    context = {
        'new_article_id': article.pk,
    }
    return HttpResponse(template.render(context, request))

答案 2 :(得分:5)

执行此操作的一种简单方法是使用create函数。通过提及字段名称及其值。以下示例代码帮助您将数据从views.py插入数据库中,并将数据库的内容显示在html页面中。

假设我们有一个看起来像这样的表

Name      Age     Marks
Bunny      4       10
Tanishq    12      12

models.py看起来像这样

from django.db import models

# Create your models here.
class Student(models.Model):

    student_name = models.CharField(max_length = 120)
    student_age = models.IntegerField()
    student_marks = models.IntegerField()

所以views.py看起来像

from django.shortcuts import render
from .models import Student    # Student is the model class defined in models.py

# Assuming the data to be entered is presnet in these lists
stud_name = ['Aman', 'Vijay']
stud_age = [13, 12]
stud_marks = [20, 22]

def my_view(request, *args, **kwargs):

    # Iterate through all the data items
    for i in range(len(stud_name)):

        # Insert in the database
        Student.objects.create(Name = stud_name[i], Age = stud_age[i], Marks = stud_marks[i])


    # Getting all the stuff from database
    query_results = Student.objects.all();

    # Creating a dictionary to pass as an argument
    context = { 'query_results' : query_results }

    # Returning the rendered html
    return render(request, "home.html", context)


以下应该是home.html文件,以显示所有输入的数据

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>

<body>
<h1>HOME</h1>

<table>
    <tr>
        <th>Name</th>
        <th>Age</th>
        <th>Marks</th>

    </tr>
    {% for item in query_results %}
        <tr> 
            <td>{{ item.student_name }}</td>
            <td>{{ item.student_age }}</td>
            <td>{{ item.student_marks }}</td>

        </tr>
    {% endfor %}
</table>

</body>
</html>


答案 3 :(得分:3)

你可以试试这个:

def myFunction(request):
    myObj = MyObjectType()
    myObj.customParameter = parameterX
    ...
    myObj.save()