我在应用程序中使用了sails Js和Mongo DB。我上传了一张图片和一篇博客文章的内容。我把它保存在图像文件夹中。我将文件目的地和内容保存到我的mongodb中。使用文件目的地,我想在HTML页面中显示内容和图像。正在显示内容,但未显示图像。控制器:
savepost:function(req,res){
var uploadFile=req.file("image")
uploadFile.upload({maxBytes:1000000,dirname:'../../assets/images'}, function onUploadComplete(err, files) {
// Files will be uploaded to ./assets/images
// Access it via localhost:1337/images/file-name
if (err) return res.serverError(err);
// IF ERROR Return and send 500 error
filename=files[0].fd;
var content=req.body.content;
var title=req.body.title;
Cyberblog.create({title:title,content:content,date:date,filename:filename,}).exec(function(err){
if(err){
console.log(err);
message="content not saved";
console.log(message)
res.redirect('/newpost');
}
else{
var start=filename.lastIndexOf('\');
fd="images/"+filename.substring(start+1)
post={
title:title,
content:content,
fd:fd,
}
res.view('pages/blog/blog',{post:post})
console.log("succesfully saved")}
}); }); },
Html文件:
<div class="container">
<div class="row align-items-stretch retro-layout-2">
<div class="col-md-4">
<a href="single.html" class="h-entry mb-30 v-height gradient" style="background-image:url(<%= post.fd %>);">
<div class="text">
<h2><%= post.title %></h2>
</div>
</a>
</div>
</div>
我无法判断这是否正确<%=post.fd%>。请帮帮我。
如果在Grunt中使用任务,则在运行sails lift
时,/assets/images
目录将移动到.tmp/public/images
。
然后,您需要检查uploadedFile.fd值来验证文件存储的正确目录,因为您的公共目录是.tmp/public
,然后要将图像获取为localhost:1337/images/my-image.png
,它应该在本地目录中作为.tmp/public/images/my-image.png
。
解决后,您可以使用相对路径通过URL或类似于控制器中的东西访问文件:
const url = require('url')
post.imageUrl = url.resolve(sails.config.custom.baseUrl, post.fd)
然后,在视图中,使用此值显示图像:
<a href="single.html" class="h-entry mb-30 v-height gradient" style="background-image:url(<%= post.imageUrl %>);">