-
仅用于 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。