码迷,mamicode.com
首页 > 其他好文 > 详细

Django 入门学习(2)

时间:2017-04-24 23:07:11      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:python   django   

在上一篇的基础上,我已经成功地获取了用户的输入信息,下面我希望将用户的值进行处理之后然后返回一个页面给用户


urls.py和前面一样

"""
from django.conf.urls import url
from django.contrib import admin
from MyApp1 import views
urlpatterns = [
    # url(r‘^admin/‘, admin.site.urls),
    url(r‘^index/‘, views.index),
]



views.py里面我新创建一个列表,把字典结构的数据放进去,然后通过render发送回去

from django.shortcuts import render
from django.shortcuts import HttpResponse
# Create your views here.
USERLIST=[]
def index(request):
    if request.method == ‘POST‘:
        u=request.POST.get(‘user‘)
        e=request.POST.get(‘email‘)
        print(u,e)
        temp={‘user‘:u,‘email‘:e}
        USERLIST.append(temp)
    return render(request,‘index.html‘,{‘data‘:USERLIST})


index.html 这里有一个特殊的for使用,他其实是转换为对应的python命令,执行之后,然后把渲染后的html页面发回给用户

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <h1>This is 4th Example!</h1>
    <form action="/index/" method="post">
        <input type="text" name="user">
        <input type="email" name="email">
        <input type="submit" value="Submit">
    </form>
    <table border="1">
        <th>用户名</th>
        <th>邮箱</th>
        <tr>
            {% for item in data %}
             <td> {{ item.user }}</td>
             <td> {{ item.email }}</td>
        </tr>
    {% endfor %}
    </table>
</body>
</html>


结果如下所示。

技术分享

因为目前所有的数据都保存在内存里,如果重启Django,这些数据都会丢失。

如果需要长久保存,我们需要把数据保存在数据库了。

本文出自 “麻婆豆腐” 博客,请务必保留此出处http://beanxyz.blog.51cto.com/5570417/1918853

Django 入门学习(2)

标签:python   django   

原文地址:http://beanxyz.blog.51cto.com/5570417/1918853

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!