我想使用node.js将图像上传到我的博客 [英] I want to upload an image to my blog with node.js

查看:56
本文介绍了我想使用node.js将图像上传到我的博客的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用node.js创建一个小型博客,我的博客在本地运行良好,但是我想在文章中添加图像,我已经使用了引导程序来显示输入内容,但是在节点上.我无法保存图片,您能帮我吗?

I am creating a small blog with node.js, my blog works perfectly locally, but I would like to add images to my article, I already use bootstrap to display my input but at the node. i can not save my image can you help me please?

我将Mongoose用作在线服务器(我在linux下工作)

I use Mongoose as an online server (I work under linux)

server.js

server.js

var express = require('express'),
swig = require('swig'),
path = require('path'),
mongoose = require('mongoose'),
app = express();

app.use(express.logger());
app.use(express.bodyParser());
app.use(express.static(path.join(__dirname, 'public')));
app.engine('html', swig.renderFile);

app.set('view engine', 'html');
app.set('views', __dirname+'/views');

mongoose.connect('mongodb://**:**@**.mlab.com:**/blog');
var Article = mongoose.model('Article', {title: String, content: 
String, updated: Date}); 

app.get('/', function(req, res){

    Article.find({}).sort({updated: -1}).exec(function(err, articles){
        if(err){throw err;}

        data = {title: 'Mon super blog', articles: articles};
        res.render('index', data);
    })
 });

app.get('/article/:id', function(req, res){
    var article = Article.findById(req.params.id, function(err, 
article){
        if(err){throw err}
            var data = {article: article, title: article.title};
        res.render('article', data);
    });
 });


 app.post('/update/:id', function(req, res){
    Article.update({ _id : req.params.id}, {
        title: req.body.titre, content: req.body.contenu, updated: new 
 Date()
    },
    function(err){
        if(err){throw err;}
        res.redirect('/');
    });
});

app.get('/edit/:id', function(req, res){
    var article = Article.findById(req.params.id, function(err, 
article){
        if(err){throw err}
        var data = {article: article, title: 'Modifier ' 
 +article.title};
        res.render('edit', data);
    })
})


app.get('/destroy/:id', function(req, res){
    Article.remove({ _id : req.params.id}, function(err){
        if(err){throw err;}
        res.redirect('/');
    });
});

app.get('/create', function(req, res){
    var data = {title: 'Ajouter un article'};
    res.render('create', data);
});

app.post('/store', function(req, res){
    var article = new Article({
        title: req.body.titre,
        content: req.body.contenu,
        updated: new Date()
    });

    article.save(function(err, article){
        if(err){throw err;}
        res.render('created');
    });
});

app.listen(3000);
console.log('App running http://localhost:3000');

create.html

create.html

{% extends 'layout.html' %}

{% block content %}

<form role="form" action="/store" method="post">

<div class="form-group">
<label for="titre">Titre</label>
<input type="text" name="titre" class="form-control" 
placeholder="titre de l'article" required>
</div>

<div class="form-group">
    <label for="titre">Titre</label>
    <label for="contenu">Contenu de l'article</label>
    <textarea name="contenu" class="form-control" placeholder="Contenu 
de l'article" rows="3" required></textarea>
</div>

<form>
    <div class="form-group">
        <label>Telecharger une image</label>
        <input type="file" class="form-control-file" name="img">
    </div>
</form>

<button type="submit" class="btn btn-default">Ajouter </button>

</form>


{% endblock %}

article.html

article.html

{% extends 'layout.html' %}

{% block content %}

<span class="pull-right"><a class="btn btn-danger remove" 
href="/destroy/{{article.id}}">Le bouton magique</a></span>

<h1>{{article.title}}</h1>


<p>{{article.content}}</p>

<span class="date">
Mis à jour {{article.updated.getDate()}} / 
{{article.updated.getMonth() +1}} / {{article.updated.getFullYear()}}
</span>

<div class="pull-right">
<a href="/edit/{{article.id}}" class="btn btn-default">Modifier</a>
</div>

{% endblock %}

推荐答案

最后,这是我上周找到的解决方案,我要谢谢你

finally here is the solution I had found last week, I want to thank you

server.js

server.js

var express = require('express'),
multer = require('multer'),
swig = require('swig'),
path = require('path'),
mongoose = require('mongoose'),
app = express(); 

//app.use(express.logger());
app.use(express.urlencoded());
app.use(express.static(path.join(__dirname, 'public')));
app.engine('html', swig.renderFile);

app.set('view engine', 'html');
app.set('views', __dirname+'/views');




mongoose.connect('mongodb://*:*@ds145438.mlab.com:45438/blog');
var Article = mongoose.model('Article', {title: String,img: String, 
content: String, updated: Date}); 

app.get('/', function(req, res){

    Article.find({}).sort({updated: -1}).exec(function(err, articles){
        if(err){throw err;}

        data = {title: 'Mon super blog', articles: articles};
        res.render('index', data);
    })
 });

 app.get('/article/:id', function(req, res){
    var article = Article.findById(req.params.id, function(err, 
 article){
        if(err){throw err}
            var data = {article: article, title: article.title};
        res.render('article', data);
    });
  });


 app.post('/update/:id', function(req, res){
    Article.update({ _id : req.params.id}, {
        title: req.body.titre,
        img: '/uploads/' + req.file.filename,
        content: req.body.contenu,
        updated: new Date(),
    },
    function(err){
        if(err){throw err;}
        res.redirect('/');
    });
  });

  var upload = multer({dest: __dirname + '/public/uploads'});

  app.post('/create',upload.single('img'), function(req,res)
  {

    console.log('req : ', req.file)
    var article = new Article({
    title: req.body.titre,
    img: '/uploads/' + req.file.filename,
    content: req.body.contenu,
    updated: new Date(),
   });

   article.save(function(err, article){
    if(err){throw err;}
    res.render('created');
   });
 });


 app.get('/edit/:id', function(req, res){
    var article = Article.findById(req.params.id, function(err, 
 article){
        if(err){throw err}
        var data = {article: article, title: 'Modifier ' + 
 article.title};
        res.render('edit', data);
    })
 })


 app.get('/destroy/:id', function(req, res){
    Article.remove({ _id : req.params.id}, function(err){
        if(err){throw err;}
        res.redirect('/');
    });
 });

  app.get('/create', function(req, res){
    var data = {title: 'Ajouter un article'};
    res.render('create', data);
  });

  app.post('/store', upload.single('img'), function(req, res){

    console.log('req.body : ', req.body)
    console.log('req.file : ', req.file)
    var article = new Article({
        title: req.body.titre,
        img: '/uploads/' + req.file.filename,
        content: req.body.contenu,
        updated: new Date(),
    });

    article.save(function(err, article){
        if(err){throw err;}
        res.render('created');
    });
   });

  app.listen(3000);
  console.log('App running http://localhost:3000');

article.html

article.html

{% extends 'layout.html' %}

{% block content %}

<span class="pull-right"><a class="btn btn-danger remove" href="/destroy/{{article.id}}">Le bouton magique</a></span>

<h1>{{article.title}}</h1>

    <img src="{{article.img}}" alt="img">


<p>{{article.content}}</p>

<span class="date">
Mis à jour {{article.updated.getDate()}} / {{article.updated.getMonth() +1}} / {{article.updated.getFullYear()}}
</span>

<div class="pull-right">
<a href="/edit/{{article.id}}" class="btn btn-default">Modifier</a>
</div>

{% endblock %}

这篇关于我想使用node.js将图像上传到我的博客的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆