真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

node.js學(xué)習(xí)筆記之讀文件

 
直接讀硬盤上aa.txt內(nèi)容
var  http  =  require('http');
var  optfile  =  require('./models/optfile');
http.createServer(function  (request,  response)  {
    response.writeHead(200,  {'Content-Type':  'textnode.js學(xué)習(xí)筆記之讀文件ml;  charset=utf-8'});
    if(request.url!=="/favicon.ico"){  //清除第2此訪問
        console.log('訪問');
        response.write('hello,world');
        //optfile.readfile("G:node.js學(xué)習(xí)筆記之讀文件\\www\\nodejs\\one\\models\\aa.txt");
        optfile.readfileSync("G:node.js學(xué)習(xí)筆記之讀文件\\www\\nodejs\\one\\models\\aa.txt");
        response.end('hell,世界');//不寫則沒有http協(xié)議尾
    }
}).listen(8000);
console.log('Server  running  at  http://127.0.0.1:8000/');

optfile.js
//兩種讀取文件方式,同步和異步
var  fs=  require('fs');
module.exports={
    readfile:function(path){          //異步執(zhí)行
        fs.readFile(path,  function  (err,  data)  {
            if  (err)  {
              console.log(err);
            }else{
              console.log(data.toString());
            }
        });
        console.log("異步方法執(zhí)行完畢");
    },
    readfileSync:function(path){      //同步讀取
        var  data  =  fs.readFileSync(path,'utf-8');
        //console.log(data);
        console.log("同步方法執(zhí)行完畢");
        return  data;                
    }
}

潮安網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,潮安網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為潮安1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的潮安做網(wǎng)站的公司定做!

教程學(xué)習(xí)地址:
node.js學(xué)習(xí)筆記之讀文件http://study.163.com/course/introduction/1003228034.htm#/courseDetail


網(wǎng)站欄目:node.js學(xué)習(xí)筆記之讀文件
文章鏈接:http://weahome.cn/article/gcsooo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部