0
我有幾個ManyToManyFields模型都使用通過(自定義中間表),我想創建使用CreateView。問題是我沒有能力爲中間表創建數據。Django的CreateView動態字段形式與ManyToMany模型通過
我有幾個ManyToManyFields模型都使用通過(自定義中間表),我想創建使用CreateView。問題是我沒有能力爲中間表創建數據。Django的CreateView動態字段形式與ManyToMany模型通過
也可以創建一個intermedicate表項directy,然後ü可以將它添加到多對多的領域,例如
modelObject = YourModel.objects.create(.....)
intermedicateObject = IntermediateModel.objects.create(.....)
modelObject.M2MfieldName.add(intermedicateObject)