gpt4 book ai didi

javascript - 使用 axios delete 从 Cloudinary 删除图像

转载 作者:行者123 更新时间:2023-12-02 22:36:13 24 4
gpt4 key购买 nike

我正在使用 axios post 请求在 cloudinary 上上传图像,并且我还想使用 axios delete 删除图像,但我找不到任何 api url 或任何可以帮助我使用 axios delete 向 cloudnary 发送删除请求的代码。

使用此代码在 Cloudinary 上上传图像
let imageFile = this.props.img
var formData = new FormData()
formData.append('file', imageFile)
formData.append('upload_preset', Routes.CLOUDINARY_PRESET)
await axios.post(Routes.CLOUDINARY_API, formData)
.then(function (res) {
imageURL = res.data.secure_url
})
.catch(function (err) {
console.log("err", err)
})

最佳答案

虽然您可以通过客户端上传到Cloudinary,但出于安全原因您无法删除资源。如果您想删除资源,则还需要将 signature 作为参数传递。

推荐generate signature服务器端,因为这需要您公开帐户的 API secret 。

关于javascript - 使用 axios delete 从 Cloudinary 删除图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58729264/

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