码迷,mamicode.com
首页 > Web开发 > 详细

Node.js 用回调处理一次性事件

时间:2017-09-02 14:06:57      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:hat   运行   images   tle   blog   doc   class   简单的   sort   

为了在程序中演示回调的用法,我们来做一个简单的HTTP服务器,让它实现如下功能:

  • 异步获取存放在JSON文件中的文章的标题;
  • 异步获取简单的HTML模板;
  • 把那些标题组装到HTML页面里;
  • 把HTML页面发送给用户。

最终结果如下所示:

技术分享

一个包含文章标签的列表:titles.json:

[
    "Kazakhstan is a huge country... what goes on there?",
    "This weather is making me craaazy",
    "My neighbor sort of howls at night"
]

用来渲染博客标题的HTML模板:template.html:

<!doctype html>
<html>
    <head></head>
    <body>
        <h1>Latest Posts</h1>
        <ul><li>%</li></ul>
    </body>
</html>

运行程序:

var http    = require(‘http‘);
var fs      = require(‘fs‘);

var server = http.createServer(function (req, res) {
    getTitles(res);
}).listen(8000, "127.0.0.1");

function getTitles(res) {
    fs.readFile(‘./titles.json‘, function (err, data) {
        if (err) return hadError(err, res);
        getTemplate(JSON.parse(data.toString()), res);
    });
}

function getTemplate(titles, res) {
    fs.readFile(‘./template.html‘, function (err, data) {
        if (err) return hadError(err, res);
        formatHtml(titles, data.toString(), res);
    });
}

function formatHtml(titles, tmpl, res) {
    var html = tmpl.replace(‘%‘, titles.join(‘</li><li>‘));
    res.writeHead(200, {‘Content-Type‘: ‘text/html‘});
    res.end(html);
}

function hadError(err, res) {
    console.log(err);
    res.end(‘Server Error‘);
}

 

Node.js 用回调处理一次性事件

标签:hat   运行   images   tle   blog   doc   class   简单的   sort   

原文地址:http://www.cnblogs.com/sumuzhe/p/7466329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!