我正在寻找一种方法来解析 integerFields 的值并返回该值。
scoreChans = models.IntegerField(0)
scoreChansSet = models.BooleanField(False)
scoreYatzy = models.IntegerField(0)
scoreYatzySet = models.BooleanField(False)
scoreTotal = scoreChans + scoreYatzy
但这给出了:TypeError:+ 不支持的操作数类型:'IntegerField' 和 'IntegerField'
有没有办法从这些字段中获取值?