class SimpleArrayField(base_field, delimiter=', ', max_length=None, min_length=None) [source]
A simple field which maps to an array. It is represented by an HTML <input>.
base_field
This is a required argument. It specifies the underlying form field for the array. This is not used to render any HTML, but it is used to process the submitted data and validate it. For example: >>> from django.contrib.postgres.forms import SimpleArrayField
>>> from django import forms