Alejandro Veintimilla
Alejandro Veintimilla

Reputation: 11523

Django CharField with no max length

I have a frontend that will be sending bas64 images, I will put those very large strings on a variable and send it to a form. What kind of FormField can I use?

The regular CharFields need a max_length. Since it is a very large string, I don't know the length it could have.

Upvotes: 25

Views: 28207

Answers (1)

Massimo Variolo
Massimo Variolo

Reputation: 4777

Maybe TextField could be the right choice.

Upvotes: 53

Related Questions