从具有与Tiosk的ManyToMany关系的Site实例,我想检查Kiosk对象是否是关系的一部分。
我能做到
self.apps.get(id=app_id).exists() and check if True
或
self.apps.get(id=app_id) and catch the ObjectDoesNotExist error
或
self.apps.filter(id=app_id) and check if True
你可以告诉我使用任何有效的方法,这将是一个有效的答案; - )
答案 0 :(得分:10)
我会用
self.apps.filter(id=app_id).exists()
这有什么问题?