Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
と のフィールドmodels.pyがEmailFieldありURLFieldます。これらを呼び出すget_internal_type()と、メソッドはandCharFieldの代わりに戻ります。EmailFieldURLField
models.py
EmailField
URLField
get_internal_type()
CharField
私はそれをEmailFieldさらにURLField処理したい。
これらの型を特殊なケースにする必要がある場合は、代わりにクラスの名前を使用してください。
type(field).__name__ # get name of the field class, instead of field.get_internal_type()
EmailFieldとはどちらURLField も Charfieldサブクラスであり、最大長があらかじめ設定されており、専用のバリデーターがあります。
Charfield