热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在另一个应用程序中调用form.py-Howtocallaform.pyinanotherapplication

IhaveamodelnamedNameModelinmyappnamedCustomer.Iwannareusethatmodelsoneofthechoic

I have a model named NameModel in my app named Customer. I wanna reuse that model's one of the choices in my another app's model or forms.py. How can I do that. Following is the code of my form in Customer app. GENDERCHOICES = ( ( "", ("---")), (6, ("Male")), (7, ("Female")), (8, ("Notknown")), ) Please help.

我在名为Customer的应用程序中有一个名为NameModel的模型。我想重用该模型是我的另一个应用程序模型或forms.py中的一个选择。我怎样才能做到这一点。以下是我在客户应用程序中的表单代码。 GENDERCHOICES =((“”,(“---”)),(6,(“男性”)),(7,(“女性”)),(8,(“未知”)),)请帮忙。

1 个解决方案

#1


1  

remember that GENDERCHOICES is either a class member of NameModel or a tuple defined at your Customer app models.py

请记住,GENDERCHOICES是NameModel的类成员或在客户应用程序models.py中定义的元组。

just import it and use it as you normally would, in your models.py file:

只需导入它并像往常一样在models.py文件中使用它:

from Customer.models import NameModel

ExampleModel(models.Model):
   type = models.CharField(max_length=1,choices=NameModel.GENDERCHOICES)

or ...

要么 ...

from Customer.models import GENDERCHOICES

ExampleModel(models.Model):
   type = models.CharField(max_length=1,choices=GENDERCHOICES)

if your tuple is not defined inside the NameModel class.

如果你的元组没有在NameModel类中定义。

Cheers.

干杯。

EDIT

编辑

to edit a tuple you have to convert it to a list append to it and then convert back to a tuple:

要编辑元组,你必须将它转换为附加到它的列表,然后转换回元组:

l = list(GENDERCHOICES)
l.append(((9,("Something else")))
GENDERCHOICES_EXTRA = tuple(l)

hope this helps

希望这可以帮助


推荐阅读
author-avatar
toto333
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有