- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在建立一个网站,用户可以上传对阅读小说的见解和评论,用户可以自由地获取或不获取小说的图像。
如果选择图像,则帖子模式具有用于 Cloudinary 上传和 future 操作的 image
和 imageId
属性,例如从 Cloudinary 库更改(更新路由)或删除(销毁路由)它。如果未选择图像,则会出现默认图像。
问题是,我设法使 default image
功能正常工作,但是我不想将多个相同的默认图像上传到 Cloudinary 库,因此我将 default_image.jpg
放在本地服务器文件夹 (/public/images)
中,准确地说,这个 default_image.jpg 不应该在 Cloudinary 库中,这应该节省大量容量。
但是,对于这些没有选择图像的帖子,我不知道应该为其 imageId
属性分配什么。
我尝试了 undefined
和 null
,当然,它们不起作用,因为这样,如果它们都未定义或为 null,它将无法找到某些 novel.imageId
。
// Schema for data
var fictionSchema = new mongoose.Schema({
...
...
image: String,
// for cloudinary API to track which image to delete or update
imageId: String,
...
...
});
// CREATE route
router.post("/", middleware.isLoggedIn, upload.single('image'), (req, res) => {
if (req.file){
// req.file.path comes from multer npm
cloudinary.v2.uploader.upload(req.file.path, function (err, result) {
if (err) {
...
}
// add cloudinary url for the image to the novel object under image property
req.body.novel.image = result.secure_url;
req.body.novel.imageId = result.public_id;
});
} else {
// setup default image for new novels
req.body.novel.image = "/images/noimage.jpg";
// imageId here should be ... empty? Undefined? Null? A fixed ID but may be delete when accessing Destroy route?
req.body.novel.imageId = undefined;
}
...
...
Novel.create(req.body.novel, function (err, newlyAddedNovel) {
if (err) {
req.flash('error', err.message);
...
} else {
req.flash("success", "Novel added successfully.");
...
}
});
});
// DESTROY route
router.delete("/:id", middleware.checkNovelOwnership, (req, res) => {
// find and delete the correct novel along with the image on cloudinary
Novel.findById(req.params.id, async (err, novel) => {
if (err) {
req.flash("error", err.message);
return res.redirect("back");
}
try {
await cloudinary.v2.uploader.destroy(novel.imageId);
// delete the novel found
novel.remove();
// delete the image from cloudinary
req.flash("success", "Novel deleted successfully.");
...
...
} catch (err) {
..
}
});
});
最佳答案
好消息,我解决了这个问题!她——雷!不过花了我大约2个小时...
所以,最终一切都按照我想要的方式进行,如此巧妙。
代码如下:
• 创建路线
对于新帖子,我首先使用默认图像设置每本新小说,然后如果提供了图像(req.file),则更改它并上传。
然后,记得在 mongo 数据库中创建新数据。 (在我的例子中是Novel.create()。)
router.post("/", middleware.isLoggedIn, upload.single('image'), async function (req, res) {
// set every new novel with default image first
req.body.novel.image = "https://res.cloudinary.com/dvfkbz6la/image/upload/v1565434656/noimage_ew1uri.jpg";
req.body.novel.imageId = "noimage_ew1uri";
req.body.novel.user = {
id: req.user._id,
username: req.user.username
};
if (req.file) {
// req.file.path comes from multer npm
await cloudinary.v2.uploader.upload(req.file.path, function (err, result) {
if (err) {
req.flash('error', err.message);
return res.redirect('back');
}
// add cloudinary url for the image to the novel object under image property
// add image's public_id (imageId in novel model) to novel object
req.body.novel.image = result.secure_url;
req.body.novel.imageId = result.public_id;
});
}
Novel.create(req.body.novel, function (err, newlyAddedNovel) {
if (err) {
...
} else {
...
}
});
});
• 更新路线
在try block 中添加if (novel.imageId = "DEFAULT_IMAGEID") { } else { }。
// UPDATE route
router.put("/:id", middleware.checkNovelOwnership, upload.single('image'), (req, res) => {
// find the correct novel
Novel.findById(req.params.id, async (err, novel) => {
if (err) {
...
} else {
// if there's a req.file, we know user is trying to upload a new image
if (req.file) {
try {
// if imageId is default, await the result to be uploaded
if (novel.imageId = "noimage_ew1uri") {
var result = await cloudinary.v2.uploader.upload(req.file.path);
} else {
// if not default, find the old image using imageId and delete
await cloudinary.v2.uploader.destroy(novel.imageId);
var result = await cloudinary.v2.uploader.upload(req.file.path);
}
novel.imageId = result.public_id;
novel.image = result.secure_url;
} catch (err) {
...
}
}
novel.title = req.body.title;
novel.author = req.body.author;
novel.price = req.body.price;
novel.description = req.body.description;
// remember to save the changed novel
novel.save();
req.flash("success", "Successfully Updated!");
res.redirect("/novels/" + novel._id);
}
});
});
• 摧毁路线
在try block 中添加if (novel.imageId != "DEFAULT_IMAGEID") { } else { }。
// DESTROY route
router.delete("/:id", middleware.checkNovelOwnership, (req, res) => {
// find and delete the correct novel along with the image on cloudinary
Novel.findById(req.params.id, async (err, novel) => {
if (err) {
req.flash("error", err.message);
return res.redirect("back");
}
try {
// if novel.imageId isn't default, destroy it from Cloudinary
if (novel.imageId != "noimage_ew1uri") {
await cloudinary.v2.uploader.destroy(novel.imageId);
}
// delete the novel found
novel.remove();
...
} catch (err) {
...
}
});
});
<小时/>
剩下的唯一问题是,我不知道为什么,但是当点击更新路线时,当 imageId 不是默认的并且用户更改了图像时,
旧镜像不会被销毁并保留在 Cloudinary 库中。真是奇怪。
我确实设置了此代码
Novel.findById(req.params.id, async (err, novel) => {
if (err) {
...
} else {
if (req.file) {
try {
// if imageId is default, await the result to be uploaded
if (novel.imageId = "noimage_ew1uri") {
...
} else {
// if not default, find the old image using imageId and delete
await cloudinary.v2.uploader.destroy(novel.imageId);
var result = await cloudinary.v2.uploader.upload(req.file.path);
}
...
...
不知道为什么等待 cloudinary.v2.uploader.destroy(novel.imageId);没有按预期工作。嗯...
关于javascript - 缺少必需参数 - public_id,以及为 Cloudinary 分配给 imageId 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57439260/
有没有办法将图片批量上传到我的云帐户? 我希望一次导入 100 张 3MB 的图像。 谢谢你。 最佳答案 您可以使用 Cloudinary 的上传 API 来一张一张上传图片。 Here is a s
我正在尝试进行 cloudinary 未签名上传。我有 html 中的文件标签,现在我尝试通过 JavaScript 初始化它。但是,我收到了奇妙的错误,即状态 $.cloudinary.unsign
我正在从浏览器直接向 Cloudinary 进行未签名的上传,并试图显示大型上传的进度。 我正在使用 cloudinary node library . 有没有什么方法可以在浏览器中使用 cloudi
我正在尝试将图像从 android 上传到 cloudinary,但我遇到了很多问题。我在 onCreate 方法中像这样初始化了 MediaManager: Map config = new Has
我按照教程使用 Cloudinary Widget 上传多张图片。我想使用签名上传。 https://cloudinary.com/documentation/upload_widget#signed
我已尽力使这段代码正常工作,但是,唉!肯定有什么问题。我试图列出 Cloudinary 中的所有 public_ids 。但它总是打印 null。下面是代码 - import java.util.Ha
这是一个简单的模型: 类产品(模型。模型): caption = models.CharField(max_length=1000) description=models.TextField() su
我是 cloudinary 和 Angular 的新手。我一直在寻找一种通过不使用 SDK 将图像上传到 cloudinary 的方法,因为 cloudinary 为我们提供了使用 post API
我已经在我的项目中安装了 Cloudinary sdk,但是当尝试从 sdk 创建变量时,出现以下错误 - 问题是我已经在我的项目中安装了cloudinary sdk,它位于我的“node_modul
我正在尝试基于此代码笔示例构建一个简单的 Cloudinary 图像上传:https://codepen.io/team/Cloudinary/pen/QgpyOK -- 我已经将它转换为与 fetc
有人可以告诉我如何将 Cloudinary 安装到我的 Strapi 应用程序中,我像文档所说的那样安装了插件,但该插件根本没有出现在我的项目中。谁能告诉我我做错了什么 最佳答案 Strapi 文档中
我想建立一个包含很多图像的网站,并因此对图像进行处理,例如亚马逊,ebay,flipkart等。建议我使用Cloudinary,Imgix等服务来调整图像大小,因为最好存储每个图像的一个版本,尽管我需
我正在使用 JavaScript 以未签名模式上传图像。生成的图像是空白图像,或者我可以说是填充黑色的图像。不知道出了什么问题。代码如下: var xhttp = new XMLHttpRequest
我正在实现 Cloudinary Jquery 上传。从我的文件上传网页,如果我浏览到另一个网站(google.com 或任何外部网站),然后单击浏览器上的后退按钮进入同一文件上传页面,上传将失败。
我用来将书籍封面上传到 Cloudinary 的表单上有一个 input type='file'。不过,我也希望不允许上传图像,即当表单提交时,没有向 input type='file' 提供文件。
$http({method: 'POST', url: $rootScope.CLOUDINARY_CONFIG.upload_url, data : { file : c
我正在使用 Express.js 编写 REST API。该API需要接受来自客户端的视频文件并将其上传到cloudinary。当我使用 api 将文件返回给客户端(作为测试)时,一切正常。当我尝试将
我的代码在下面。我尝试通过 java 将图像上传到 cloudinary 但没有上传它显示以下错误 Exception in thread "main" java.lang.UnknownError:
这是我第一次在这里发帖提问。我正在构建一个具有图像上传功能的 meteor 应用程序。我找到了 meteor 的 cloudinary 包 https://github.com/Lepozepo/cl
我想将图像上传到 Cloudinary,使用cordova 相机插件直接从 Ionic 中的相机拍摄。我收到代码 1 的错误,显示消息“上传预设必须在未签名上传的白名单中”。 如何解决此错误。请帮助。
我是一名优秀的程序员,十分优秀!