我是python的新手,并希望得到一些帮助...
我有2个模型,每个模型都有我想要用作我正在构建的字典的“值”的字段。第二类文件是第一个类的子表。我想将模型中的值作为item_sets传递。
class One(Models.model):
id = models.Autofield(Primary_key=True, null=True)
type = models.CharField(max_length=50, null=True)
name = models.CharField(max_length=100, null=True)
class Two(Models.model):
two_id = models.ForeignKey(One, blank=False)
x_coord = models.IntegerField(null=True, blank=True)
y_coord = models.IntegerField(null=True, blank=True)
fontsize = models.IntegerField(null=True, blank=True)
从这两个模型中,我想创建一个字典,通过所有字段计算为“集合”,并创建一个字典,从而模拟模型中的值。
例如:
def get_one_two(self, three)
one_two_three = One.objects.using("one_two").select_related("one_two_item_set").filter(three=three)
one_count = 0
for i in one_two_three:
template_dict = {
'id': one{id},
'type': one{type},
'name': one{name},
'id': two{two_id},
'x_coord': two{x_coord},
'y_coord': two{y_coord},
'fontsize': two{fontsize}
}
它似乎不起作用。非常感谢一些急需的帮助。我必须在最后将值从此返回到主类。
Thx