-
僅用於 self.ManyToManyFields 的定義。考慮以下模型:
from django.db import models class Person(models.Model): friends = models.ManyToManyField("self")
當 Django 處理這個模型時,它識別出它自己有一個
ManyToManyField
person_set
屬性添加到Person
類。相反,ManyToManyField
如果您不希望與
self
的多對多關係對稱,請將symmetrical
False
。這將強製 Django 為反向關係添加說明符,允許ManyToManyField
本文介紹 django.db.models.ManyToManyField.symmetrical
的用法。
聲明
ManyToManyField.symmetrical
相關用法
- Python Django ManyToManyField.through_fields用法及代碼示例
- Python Django ManyToManyField.through用法及代碼示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代碼示例
- Python Matplotlib.figure.Figure.subplots_adjust()用法及代碼示例
- Python Matplotlib.pyplot.matshow()用法及代碼示例
- Python Matplotlib.axis.Axis.get_tick_space()用法及代碼示例
- Python Matplotlib.pyplot.thetagrids()用法及代碼示例
- Python Matplotlib.axes.Axes.text()用法及代碼示例
- Python Matplotlib.pyplot.ion()用法及代碼示例
- Python Matplotlib.axes.Axes.start_pan()用法及代碼示例
- Python Matplotlib.axes.Axes.get_ylabel()用法及代碼示例
- Python Matplotlib.axis.Axis.get_major_locator()用法及代碼示例
- Python Numpy MaskedArray.argmin()用法及代碼示例
- Python Matplotlib.axis.Tick.get_window_extent()用法及代碼示例
- Python Matplotlib.artist.Artist.set_alpha()用法及代碼示例
- Python Matplotlib.pyplot.xkcd()用法及代碼示例
- Python Matplotlib.colors.TwoSlopeNorm用法及代碼示例
- Python Matplotlib.pyplot.axvspan()用法及代碼示例
- Python Matplotlib.axis.Axis.get_agg_filter()用法及代碼示例
- Python Matplotlib.axis.Axis.get_minorticklabels()用法及代碼示例
- Python Matplotlib.axes.Axes.set_ybound()用法及代碼示例
- Python Numpy MaskedArray.allequal()用法及代碼示例
- Python Matplotlib.pyplot.bone()用法及代碼示例
- Python Matplotlib.axes.Axes.get_path_effects()用法及代碼示例
- Python Matplotlib.axis.Axis.set_picker()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.db.models.ManyToManyField.symmetrical。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。