1
我得到一個「類型錯誤:get_query()恰恰1個參數(0給出)」以下代碼:Django模型類中的函數沒有采用自變量?
class graph_column_format(models.Model):
def get_query(self):
return self.graph_id.query_id
graph_id = models.ForeignKey("graph", on_delete=models.CASCADE)
column = models.ForeignKey("query_column", on_delete=models.CASCADE,
limit_choices_to={"query_id": get_query()})
定義在類中,所以我不明白爲什麼我得到這個錯誤。