我输入的时候
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
,
我的表格字段是:
我的模特是:
我不知道为什么没有类别和category_id
答案 0 :(得分:2)
试试这个:
comds = Purchased.objects.filter(category__id =1)