Django ORM错误:FieldError:无法将关键字XXX解析为字段

时间:2017-10-17 10:32:26

标签: django database

我输入的时候 comds = Purchased.objects.filter(category_id = '1'), 它抛出了这样的错误 FieldError: Cannot resolve keyword 'category_id' into field. Choices are: comd_expire, comd_img_type, comd_name, id, player, player_id, purchase_time, status, 我的表格字段是: enter image description here 我的模特是: enter image description here 我不知道为什么没有类别和category_id

1 个答案:

答案 0 :(得分:2)

试试这个:

comds = Purchased.objects.filter(category__id =1)