Home > Q&A > body text
比如我想做一个评论 app ,假如我不使用 generic relation,如何做到这个评论 app 可以用于任何 Model?
PHP中文网2017-04-17 17:53:02
You can use ManyToManyField on the model to point to Comment
巴扎黑2017-04-17 17:53:02
Why not use GenericForeignKey? It’s a very useful thing.