- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
具体来说,我有 Django 模型对象,我想在运行时向其添加属性。如果这适用于 Django 之外的任何 python 类,那就太好了。
我有以下型号
模型.py
class person(models.Model):
# ...
firstname=models.TextField(max_length=100)
lastname=models.TextField(max_length=100)
type=models.TextField(max_length=100)
address = models.ForeignKey(address, null=True)
class event(models.Model):
date=models.DateTimeField(auto_now=True )
name=models.CharField(max_length=100)
attendees = models.ManyToManyField(person)
def main():
p = person()
p.fisrtsname="Firsty"
p.lastname="Lasty"
p.addnewproperty(newtemporaryproperty)
p.newtemporaryproperty="This is a new temporary property"
当我使用
person.newtemporaryproperty=property("")
尝试向其添加值时出现“无法设置属性错误”。我可能用错了。
编辑
我想做的是查看模型中的每个人是否都参加了事件。如果他们有,请在他们的名字旁边打一个复选框。这是附加的相关文件
表格.py
class AttendeesTable(tables.Table):
firstname = tables.Column()
lastname = tables.Column()
here = tables.TemplateColumn('<input id="attendee_{{ record.pk }}" {{
record.here }} type="checkbox" />',
verbose_name="Here?")
class Meta:
attrs = {'id': 'attendancetable', 'width': '100%', 'class': 'table
table-hover'}
template = 'django_tables2/bootstrap.html'
row_attrs = {
'id': lambda record: str(record.pk),
}
View .py
def markattendancepage(request):
person.here = ""
people= person.objects.all()
groups = group.objects.all()
eventid= 1 #set to 1 for testing
table=None
for p in people:
if event.objects.filter(id=eventid, attendees__pk=p.id).exists():
p.here = "checked"
else:
p.here = ""
table = app.tables.AttendeesTable(people)
RequestConfig(request, paginate=False).configure(table)
return render(request, 'app/user/attendancechecker.html', {'attendeetable':table})
pass
最佳答案
因为 django 模型实例经常在幕后重新加载,您可能不想在运行时设置属性,因为它们很容易丢失。相反,您可能想要做的是在类定义中拥有一个属性(或方法),例如
class Person(models.Model):
first_name=models.CharField(max_length=100)
last_name=models.CharField(max_length=100)
@property
def is_in_category(self):
# 'calculation' return a boolean
return True if something else False
然后,如果您有任何特定的 Person
实例,您可以检查 is_in_category
属性
for person in Person.objects.all():
if person.is_in_category:
# do something
这也适用于模板......例如,如果你想制作一张人员表格
<table><tr><th>Name</th><th>In category?</th></tr>
{% for person in people %}
<tr>
<td>{{ person.first_name }}, {{person.last_name}}</td>
<td>{% if person.is_in_category %}Yes{% else %}No{% endif %}</td>
</tr>
{% endfor %}
</table>
但是,由于属性仅作为 Python 结构存在,您不能使用基于此属性的 SQL 查询。
# this will not work
people_in_category = Person.objects.filter(is_in_category=False)
如果你想执行这样的查询,你需要在模型或相关模型上创建一个字段,或者以其他方式提出一个与属性等效的 SQL 表达式。
编辑:
根据您的模型,您可以执行一个应该做同样事情的查询。您的 event
模型有一个 attendees
字段,这将是您要查找的内容并且是执行此操作的方法,因为看起来您手头有事件 ID 并且访问事件模型。
evnt = event.objects.get(pk=eventid)
evnt.attendees # people who attended the event
did_not_attend = people.objects.exclude(id__in=evnt.attendees)
您可能需要考虑在模型管理器上创建一个方法,该方法对查询进行注解,以获得与该属性给您的效果相同的效果。例如
class PersonManager(models.Manager):
def for_event(self, evnt):
attended_event = person.objects.filter(id__in=evnt.attendees)
qs = self.get_queryset()
return qs.annotate(attended=Exists(attended_event))
然后如果你用你的人员模型注册这个经理,你可以做
for p in person.objects.for_event(evnt):
if p.attended:
# they attended the event
关于python - 在运行时向 Django 模型添加属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49134759/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!