gpt4 book ai didi

javascript - 将图像上传到cloudinary服务器时如何更改图像的名称?

转载 作者:行者123 更新时间:2023-12-03 02:27:19 25 4
gpt4 key购买 nike

我正在尝试将 Base64 格式的图像名称更改为稍后定义的名称。我该怎么做?我想自定义cloudinary服务器中的名称

  var uploadOptions = {
params : {
//'upload_preset': "YOUR_IMAGE_UPLOAD_PRESET",
'upload_preset': "xxx",
}

//imageURI is base64 image
//.upload("YOUR_IMAGE_UPLOAD_LINK", imageURI, uploadOptions)
.upload("https://api.cloudinary.com/v1_1/xxxx/image/upload", imageURI, uploadOptions)

.then(function(result) {

最佳答案

使用 public_id 参数命名图像,例如:

var uploadOptions = {
params : {
//'upload_preset': "YOUR_IMAGE_UPLOAD_PRESET",
'upload_preset': "xxx",
'public_id': "imageName"
}

它还可以包含文件夹。例如:

'public_id': "myfolder/imagename"

或者

'public_id': "imagename"
'folder': "myfolder"

您可以阅读更多相关信息here .

关于javascript - 将图像上传到cloudinary服务器时如何更改图像的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48889723/

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