2017-10-17 62 views
1

當我打字 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_IDDjango的ORM錯誤:FieldError:無法解析的關鍵字XXX到現場

+0

你有沒有嘗試過' id ='1'' – AK47

+0

顯示您的類別模型 – AK47

+0

請顯示完整的回溯。確保你保存了'models.py'並重新啓動了服務器,以便Django運行當前版本的代碼。請將代碼作爲文本發佈,而不是截圖。 – Alasdair

回答

2

試試這個:

comds = Purchased.objects.filter(category__id =1) 
相關問題