想用django中的form写出一个填写个人信息的功能,想实现如果已经填写过个人信息,即数据库已经存在信息,

想用django中的form写出一个填写个人信息的功能,想实现如果已经填写过个人信息,即数据库已经存在信息,,第1张

view中的处理函数,如果请求方式为默认,则从数据库中读取数据,通过上下文传递到模板绑定,如果是POST,则接收更新处理:

def handle_data(request,rid):

if formmethod=="POST":

#检索表单值,更新数据

else:

r = Resumeobjectsget(pk=rid)

return render(request,'testhtml',{"resume":r})

模板页

<input value="{{resumetitle}}" />

12之后, django支持在项目中使用多个DB 那么到底如何使用呢?

1 修改 settingspy

01DATABASES = {

02 'default': {

03 'NAME': 'app_data',

04 'ENGINE': 'djangodbbackendspostgresql_psycopg2',

05 'USER': 'postgres_user',

06 'PASSWORD': 's3krit'

07 },

08 'users': {

09 'NAME': 'user_data',

10 'ENGINE': 'djangodbbackendsmysql',

11 'USER': 'mysql_user',

12 'PASSWORD': 'priv4te'

13 }

14}

15

16DATABASE_ROUTERS = ['pathtoMyAppRouter']

2 实现自己的DB routers,这里决定了每个程序使用的是哪个DB。

01class MyAppRouter(object):

02 """A router to control all database operations on models in

03 the myapp application"""

04

05 def db_for_read(self, model, hints):

06 "Point all operations on myapp models to 'other'"

07 if model_metaapp_label == 'myapp':

08 return 'other'

09 return None

10

11 def db_for_write(self, model, hints):

12 "Point all operations on myapp models to 'other'"

13 if model_metaapp_label == 'myapp':

14 return 'other'

15 return None

16

17 def allow_relation(self, obj1, obj2, hints):

18 "Allow any relation if a model in myapp is involved"

19 if obj1_metaapp_label == 'myapp' or obj2_metaapp_label == 'myapp':

20 return True

21 return None

22

23 def allow_syncdb(self, db, model):

24 "Make sure the myapp app only appears on the 'other' db"

25 if db == 'other':

26 return model_metaapp_label == 'myapp'

27 elif model_metaapp_label == 'myapp':

28 return False

29 return None

同步数据库的时候,默认会同步到Default数据库,当然也可以通过 --database 来指定同步哪一个, 如下:

[plain] view plain copy print

<tt class="xref std std-djadminopt docutils literal" style="text-decoration: none; white-space: nowrap; color: rgb(35, 79, 50); margin-left: 0px; margin-right: 0px; border-bottom-width: 1px; border-bottom-color: rgb(35, 79, 50); border-bottom-style: dotted; ">$ /managepy syncdb

$ /managepy syncdb --database=users</tt>

那么程序中如何来选择呢?

比如,下面的代码将选择default数据库

[python] view plain copy print

<span style="font-family:monospace;color:#234f32;">>>> # This will run on the 'default' database

>>> Authorobjectsall()

>>> # So will this

>>> Authorobjectsusing('default')all()</span>

但是下面的代码将选择other数据库

[python] view plain copy print

<span style="font-family:monospace;color:#234f32;">>>> # This will run on the 'other' database

>>> Authorobjectsusing('other')all()</span>

上面是查询的情况,保存的使用也一样,也是通过using来指定,如下:

[python] view plain copy print

<span style="font-family:monospace;color:#234f32;">>>> my_objectsave(using='legacy_users')</span>

删除的时候

[python] view plain copy print

<span style="font-family:monospace;color:#234f32;">>>> u = Userobjectsusing('legacy_users')get(username='fred')

>>> udelete() # will delete from the `legacy_users` database</span>

非win服务器部署用uwsgi,部署方便简单速度还快,数据库直接用mysql了,其实sqlite也行,效力差不了多少,要求高点的话PostgreSQL,django自己实现了数据库ORM,切换数据库也很简单

以上就是关于想用django中的form写出一个填写个人信息的功能,想实现如果已经填写过个人信息,即数据库已经存在信息,全部的内容,包括:想用django中的form写出一个填写个人信息的功能,想实现如果已经填写过个人信息,即数据库已经存在信息,、如何在django中使用多个数据库、单片机串口数据怎样传入用django搭建的服务器中sqlite数据库等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9767545.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存