昨天,我们跟着这位大哥的博客(https://github.com/nswbmw/N-blog/wiki/_pages)进行了nodeJS初步的学习,最后也能将数据插入数据库了
但是一味的跟着别人博客写代码肯定不行,所以我们今天就来做一个简单的新闻发布系统,系统第一阶段不需要太难,主要有以下功能
功能虽然不多,但是也涵盖很多基本操作了,程序不过增删查改嘛,外加上传附件,够了。于是开始我们今天的学习吧
根据昨天的折腾后,我们已经有了nodeJS与mongoDB环境了,现在直接新建工程文件与数据库文件即可
很明显,里面很多模块依赖没有,这个时候将昨天的package.json直接考过来:
"name": "application-name",
Express server listening on port 3000
于是,我们的程序高高兴兴的运行起来了,打开网址一看,确实没问题
PS:这里有个问题需要注意,我们下载下来的文件不是UTF-8编码,所以中文可能有乱码,文件编码需要各位自己统一
var settings = require('../settings'),
Db = require('mongodb').Db,
Connection = require('mongodb').Connection,
Server = require('mongodb').Server;
module.exports = new Db(settings.db, new Server(settings.host, Connection.DEFAULT_PORT), { safe: true });
d:\mongodb\bin\mongod.exe -dbpath d:\mongodb\news
以后要启动数据库,只需要运行他即可,如此,我们初步的准备工作基本结束
但是这里有两个比较烦的事情,一个是每次要启动news程序很烦,二个是修改任何东西都需要重启,于是我们这里先解决这两个问题
① 在桌面新建news_app.bat,以后运行他就可以启动程序了
② supervisor为一进程保护程序,我们可以使用他帮我们重启程序,首先按照,然后调整我们的node_app.bat
npm install -g supervisor
这个样子后,修改了文件就不需要手动重启了(需要将news_app放到项目目录下),于是准备工作到此为止
① 首页为index这里将列出所有新闻类型以及对于新闻条目
于是,我们去掉app里面的路由功能,将路由全部放到index里面
//app.get('/', routes.index);
//app.get('/users', user.list);
module.exports = function (app) {
app.get('/', function (req, res) {
res.render('index', { title: 'Express' });
app.get('/add', function (req, res) {
app.get('/delete', function (req, res) {
app.get('/view', function (req, res) {
app.get('/update', function (req, res) {
第一步简单如此,因为增加新闻应该有单独的页面,而具体点击增加按钮又会有其他处理,所以内部还得细分各个请求,现在规定如下:
/ 默认页面,该页面显示所有类型以及新闻,并带有删除按钮
/addNews 添加新闻具体post请求地址(点击按钮时候的响应)
module.exports = function (app) {
app.get('/', function (req, res) {
res.render('index', { title: 'Express' });
app.get('/add', function (req, res) {
app.post('/addNews', function (req, res) {
app.get('/delete', function (req, res) {
app.get('/view', function (req, res) {
于是我们需要新建几个模板组织我们的网页,这里我们先不分离头尾只要最简单的页面即可
新增add与view两个模板文件,暂时表现与index.ejs一致,并且修改导航相关
module.exports = function (app) {
app.get('/', function (req, res) {
res.render('index', { title: 'Express' });
app.get('/add', function (req, res) {
res.render('add', { title: '添加新闻页面' });
app.post('/addNews', function (req, res) {
app.get('/delete', function (req, res) {
app.get('/view', function (req, res) {
res.render('view', { title: '查看新闻请求' });
本来还涉及到类型操作的,但是做着做着给搞没了,暂时不管他吧,因为首次做容易迷糊
这里,我们就不使用表单提交了,我们用ajax......这里顺便引入zepto库,于是我们的页面成了这样
<link rel='stylesheet' href='/stylesheets/style.css' />
<script src="javascripts/zepto.js" type="text/javascript"></script>
标题:<input type="text" id="title" />
内容:<textarea id="content"></textarea>
<input type="button" type="button" id="ok" value="添加新闻" />
<script type="text/javascript">
$(document).ready(function () {
$('#ok').click(function () {
param.title = $('#title').val();
param.content = $('#content').val();
$.post('/addNews', param, function () {
虽然现在还没有请求响应程序,所以数据并不会被处理,另外我们这里的附件也没有(现在附件只允许一个好了),于是再修改下代码,加入图片:
PS:比较麻烦的是图片经过ajax处理有点麻烦,所以我们这里乖乖的换回form操作算了,不然又要搞多久......
<link rel='stylesheet' href='/stylesheets/style.css' />
<form enctype="multipart/form-data" method="post" action="/addNews">
标题:<input type="text" id="title" name="title" />
图片:<input type="file" id="pic" name="pic" />
内容:<textarea id="content" name="content"></textarea>
<input type="submit" id="ok" value="添加新闻" />
这个样子就不需要过多的考虑附件问题,先暂时如此吧,现在先处理请求程序,这里先在public里面新建news文件夹用于存储其图片
在models文件夹新增news.js文件,为其构建实体,并赋予新增查询相关操作:
于是,写入数据库的程序就有了,这里我们来试试能不能插入数据库,当然需要修改路由处的程序
PS:路由处当然不能写过多逻辑代码,这个文件以后还得分离
app.post('/addNews', function (req, res) {
var title = req.body.title;
var content = req.body.content;
var news = new News(title, content, pic)
news.save(function (err, data) {
上传图片功能express本身就支持了,express通过bodyParser解析请求体,然后便可通过他上传文件了,其内部使用了formidable
这里将app.js里面的app.use(express.bodyParser())改为:
app.use(express.bodyParser({ keepExtensions: true, uploadDir: './public/news' }));
app.post('/addNews', function (req, res) {
for (var i in req.files) {
fs.unlinkSync(req.files[i].path);
console.log('success removed an empty file');
var path = './public/news/' + req.files[i].name;
fs.renameSync(req.files[i].path, path);
console.log('sunccess renamed a file');
// var title = req.body.title;
// var content = req.body.content;
// var pic = req.body.pic;
// var news = new News(title, content, pic)
// news.save(function (err, data) {
这个时候选取文件后点击添加新闻,我们的文件就上传上去了
这个时候,我只需要将文件名记录在数据库即可,文件目录里面就有图片了
app.post('/addNews', function (req, res) {
for (var i in req.files) {
fs.unlinkSync(req.files[i].path);
console.log('success removed an empty file');
var path = './public/news/' + req.files[i].name;
fs.renameSync(req.files[i].path, path);
console.log('sunccess renamed a file');
var title = req.body.title;
var content = req.body.content;
var news = new News(title, content, pic)
news.save(function (err, data) {
res.send('<a href="./">请求成功,返回首页</a>');
数据库中有数据了,我们目录也有文件了,现在只需要将数据读出来了
<link rel='stylesheet' href='/stylesheets/style.css' />
<%for(var k in data) { %>
标题: <%=data[k].title %></div>
内容: <%=data[k].content%></div>
附件:<img src="news/<%= data[k].pic%>" /></div>
<a href="/delete?id=<%=data[k] %>">删除</a>
本文转自叶小钗博客园博客,原文链接http://www.cnblogs.com/yexiaochai/p/3536547.html,如需转载请自行联系原作者