我想在Django中上传图片。我成功整合了何时使用简单图像字段
<input type="file" name="profile" class="form-control input-field">
但是当我使用JS插件裁剪图像并上传时,实际字段看起来像这样
<input type="file" class="form-control input-field">
<input type="hidden" name="profile_image" value="base64_string_of_crop_image">
所以我收到了profile_image字段的验证错误。 有人可以帮助我吗?