在提交包含 trix-editor 的表单后,如何防止trix-editor
在重置内部内容后在存储目录中删除附件/图像。trix-editor
我将重置所有字段并清除表单中的字段.. 重置后,我发现我存储在默认存储磁盘中的附件现在已被删除。
这就是我处理附件删除的方式
let url = file.attachment.attachment.attributes.values.url.split("/").pop();
console.log(url);
axios.delete(this.remove_attachment_endpoint + `${url}`).then(response => {
console.log(response);
}).catch(error => {
console.log(error);
});