第五天

作者: b02e63527e54 | 来源:发表于2016-10-23 19:25 被阅读0次

    1.node.js文件引入
    exports.匿名函数 = function(){} //exports引入的关键字。
    var a = require(‘引入的文件地址’); //clude不可以使用。
    2.函数引入模块
    function jwr(){
    this.str = function(){
    console.log('jwr');
    }
    }
    关键字:module.exports = jwr;
    strs = new jwr();
    strs.str();
    3.读1.txt文档 日志
    var fs = require('fs'); //fs默认的方法
    fs.readFile('./1.txt',(err,data)=>{
    if(err){
    throw err;
    }
    console.log(data.toString());
    });
    4.http协议
    var http = require("http");
    var ip = "";
    var port = 3000;
    http.createServer((req,res) =>{
    res.writeHead('200',{'content-type':'text/html'});
    res.write('<html>');
    res.write('<meat charset="utf-8">');
    res.write('</html>');
    res.end();
    }).listen(port,ip,() => {
    console.log('chenggong');
    });

    }

    相关文章

      网友评论

          本文标题:第五天

          本文链接:https://www.haomeiwen.com/subject/yyskuttx.html