gpt4 book ai didi

javascript - 图片上传不起作用(在模态上处理 cropper.js)

转载 作者:行者123 更新时间:2023-11-28 00:54:50 26 4
gpt4 key购买 nike

我的 signup.html 中有一个模式,它应该显示图像裁剪器,来自 cropper.js上传文件时。但是,如果我尝试更改正在上传的文件,模式会显示我使用的第一个文件。我做错了什么?

P.S.: 我是第一次使用 cropper.js。

这是我的代码:

注册.html:

{% extends 'base.html' %}

{% load static %}

{% block content %}
<header>
<img src="{% static 'img/logo-min.png' %}" alt="Logo-min">
</header>
<div class="card-signup">
<form enctype="multipart/form-data" method="POST" class="post-form">
<h1>+ Cadastro de novo aluno</h1>
{% csrf_token %}
{{ credentials_form }}
{{ personal_info_form }}
<button type="submit" class="save btn btn-default">Confirmar</button>
</form>
</div>
<div id="modal">
<div class="canvas">
<a class="close">&times;</a>
<img class="modal-content" id="image">
<button class="crop">Cortar</button>
</div>
</div>
{% endblock %}

image_cropper.js:

showModal = () => {
let modal = document.querySelector('#modal');
let image = document.querySelector('#image');

let file = document.querySelector('input[type=file]').files[0];
let fileReader = new FileReader();

fileReader.onload = () => {
modal.style.display = 'flex';
image.src = fileReader.result;
let cropper = new Cropper(image, {
dragMode: 'move',
aspectRatio: 1 / 1,
autoCropArea: 0.65,
restore: false,
guides: false,
center: false,
highlight: false,
cropBoxMovable: false,
cropBoxResizable: false,
toggleDragModeOnDblclick: false,
});

let crop_button = document.querySelector('.crop');
crop_button.onclick = cropper.crop;
}

if (file) {
fileReader.readAsDataURL(file);
} else {
image.src = '';
}
}

closeModal = () => {
let modal = document.querySelector('#modal');
picture_input.value = '';
modal.style.display = 'none';
}

let picture_input = document.querySelector('#id_picture');
picture_input.onchange = showModal;

let close_button = document.querySelector('.close');
close_button.onclick = closeModal;

文件输入由 Django 渲染,但它看起来像这样:

<input name="picture" accept="image/*" required="" id="id_picture" type="file">

最佳答案

要删除图像实例,您需要使用可用的destroy() 方法。在我的代码中,我是这样写的:

close_button.onclick = closeModal = () => {
modal.style.display = 'none';
cropper.destroy();
}

关于javascript - 图片上传不起作用(在模态上处理 cropper.js),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52998130/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com